Difference between revisions of "Qt"

From ProgrammingExamples
Jump to: navigation, search
(Images)
(Building)
 
(23 intermediate revisions by the same user not shown)
Line 1: Line 1:
 +
== Building ==
 +
See this guide to get started: http://www.itk.org/Wiki/CMake/Tutorials/Qt
 +
 
== Simple Widgets ==
 
== Simple Widgets ==
 +
* [[Qt/AutoConnect|Auto connect slots]]
 
* [[Qt/ToolbarIcons|Toolbar icons]]
 
* [[Qt/ToolbarIcons|Toolbar icons]]
 
* [[Qt/Icons|Use icons without resources (QCommonStyle) - Old method]]
 
* [[Qt/Icons|Use icons without resources (QCommonStyle) - Old method]]
Line 33: Line 37:
 
== Model/View ==
 
== Model/View ==
 
* [[Qt/ModelView/QAbstractTableModel|QAbstractTableModel]]
 
* [[Qt/ModelView/QAbstractTableModel|QAbstractTableModel]]
 +
* [[Qt/ModelView/ComboBoxOfCheckBoxes|ComboBox of CheckBoxes (QStandardItemModel, QStandardItem)]]
 +
* [[Qt/ModelView/StringListModelCheckable|A StringListModel with checkboxes]]
 +
* [[Qt/ModelView/StandardItemModel|A StandardItemModel with checkboxes]]
 +
* [[Qt/ModelView/AbstractListModelCheckable|An AbstractListModel with checkboxes]]
 +
* [[Qt/ModelView/AbstractListModelFileDialog|An AbstractListModel where one of the cells can be changed using a QFileDialog]]
 +
* [[Qt/ModelView/ListViewComboBox|A persistent ComboBox on a list view]]
 +
* [[Qt/ModelView/ItemSelectionModel|Track selected items in a model]]
 +
 +
* [[Qt/ModelView/AbstractTableModelCheckable|A table with checkboxes]]
  
 
== Utilities ==
 
== Utilities ==
 
* [[Qt/Widgets/Time|Get the system time]]
 
* [[Qt/Widgets/Time|Get the system time]]
 
* [[Qt/Utilities/StatusBar|Status bar]]
 
* [[Qt/Utilities/StatusBar|Status bar]]
 +
* [[Qt/Utilities/DragAndDropFiles|Drag and drop files onto a widget]]
 +
* [[Qt/Utilities/HandleItem|Add resize handles to a rectangle]]
 +
* [[Qt/Utilities/EventFilter|Handle another widgets event]]
 +
* [[Qt/Utilities/Settings|Save application settings]]
  
 
== Other ==
 
== Other ==
Line 45: Line 62:
  
 
* [[Qt/Images/MovingAPixmap|Move a pixmap in a QGraphicsView]]
 
* [[Qt/Images/MovingAPixmap|Move a pixmap in a QGraphicsView]]
 +
 +
* [[Qt/Images/SemiTransparentPixels|Make pixels semi-transparent]]
 +
 +
* [[Qt/Images/RubberBand|Use a QRubberBand to indicate a selected region in an image]]
 +
 +
* [[Qt/Images/RubberBandSignal|Customize QGraphicsView to monitor the RubberBand behavior]]
 +
 +
== Delegates ==
 +
* [[Qt/Delegates/ComboBoxDelegate|A combobox in a TableView]]
 +
 +
== Databases ==
 +
* [[Qt/Databases/ListView|A ListView of a table column]]
 +
 +
== QWT ==
 +
* [[Qt/QWT/Plot|Simple plot]]
 +
 +
== Events ==
 +
* [[Qt/Events/Resize|Resize a graphics item when the form is resized]]

Latest revision as of 11:30, 21 September 2012

Building

See this guide to get started: http://www.itk.org/Wiki/CMake/Tutorials/Qt

Simple Widgets

Model/View

Utilities

Other

Images

Delegates

Databases

QWT

Events