Difference between revisions of "Qt"

From ProgrammingExamples
Jump to: navigation, search
(Model/View)
(Building)
 
(10 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 37: Line 41:
 
* [[Qt/ModelView/StandardItemModel|A StandardItemModel with checkboxes]]
 
* [[Qt/ModelView/StandardItemModel|A StandardItemModel with checkboxes]]
 
* [[Qt/ModelView/AbstractListModelCheckable|An AbstractListModel 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 ==
Line 43: Line 52:
 
* [[Qt/Utilities/DragAndDropFiles|Drag and drop files onto a widget]]
 
* [[Qt/Utilities/DragAndDropFiles|Drag and drop files onto a widget]]
 
* [[Qt/Utilities/HandleItem|Add resize handles to a rectangle]]
 
* [[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 66: Line 77:
 
== QWT ==
 
== QWT ==
 
* [[Qt/QWT/Plot|Simple plot]]
 
* [[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