Skip to content

Commit

Permalink
Rename CommonControls to Controls
Browse files Browse the repository at this point in the history
  • Loading branch information
gammasoft71 committed Jan 11, 2024
1 parent d778951 commit faa5b5c
Show file tree
Hide file tree
Showing 108 changed files with 49 additions and 49 deletions.
2 changes: 1 addition & 1 deletion Qt.Widgets/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ add_subdirectory(Applications)
add_subdirectory(CommonDialogs)
add_subdirectory(MenusAndToolbars)
add_subdirectory(ContainerControls)
add_subdirectory(CommonControls)
add_subdirectory(Controls)
add_subdirectory(Components)
add_subdirectory(CustomControls)
add_subdirectory(Others)
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.20)

# Solution
project(CommonControls)
project(Controls)

# Common Controls
add_subdirectory(CheckBox)
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion Qt.Widgets/Qt.Widgets.pro
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ TEMPLATE = subdirs
SUBDIRS = \
HelloWorlds \
Applications \
CommonControls \
Controls \
CustomControls \
Components \
ContainerControls \
Expand Down
46 changes: 23 additions & 23 deletions Qt.Widgets/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,29 +18,29 @@ shows how to use Qt widgets only by programming code (c++17).

## Common Controls

* [CheckBox](CommonControls/CheckBox) shows how to create a check box with QCheckBox.
* [CheckedListWidget](CommonControls/CheckedListWidget) shows how to create a checked list widget with QListWidget.
* [ComboBox](CommonControls/ComboBox) shows how to create a combo box with QComboBox.
* [Dial](CommonControls/Dial) shows how to create a dial with QDial.
* [DoubleSpinBox](CommonControls/DoubleSpinBox) shows how to create a double spin box with QDoubleSpinBox.
* [LCDNumber](CommonControls/LCDNumber) shows how to create a LCD number with QLCDNumber.
* [Label](CommonControls/Label) shows how to create a label with QLabel.
* [LineEdit](CommonControls/LineEdit) shows how to create a line edit with QLineEdit.
* [ListView](CommonControls/ListWidget) shows how to create a list view with QListView.
* [ListView2](CommonControls/ListView2) shows how to create a list view with QTreeView.
* [ListWidget](CommonControls/ListWidget) shows how to create a list widget with QListWidget.
* [PictureBox](CommonControls/PictureBox) shows how to create a picture box with QLabel.
* [PictureBox2](CommonControls/PictureBox2) shows how to create a picture box with QGraphicsPixmapItem.
* [ProgressBar](CommonControls/ProgressBar) shows how to create a ProgressBar with QProgress.
* [PushButton](CommonControls/PushButton) shows how to create a button and Event Click with QPushButton.
* [RadioButton](CommonControls/RadioButton) shows how to create a radio button with QRadioButton.
* [Slider](CommonControls/Slider) shows how to create a slider with QSlider.
* [SpinBox](CommonControls/SpinBox) shows how to create a spin box with QSpinBox.
* [SpinButton](CommonControls/SpinButton) shows how to create a spin button with QSpinBox.
* [ToggleButton](CommonControls/ToggleButton) shows how to create a toggle button with QPushButton.
* [TreeView](CommonControls/TreeView) shows how to create a three view with QTreeView.
* [TreeWidget](CommonControls/TreeWidget) shows how to create a three widget with QTreeWidget.
* [Widget](CommonControls/ToggleButton) shows how to create a widget with QWidget.
* [CheckBox](Controls/CheckBox) shows how to create a check box with QCheckBox.
* [CheckedListWidget](Controls/CheckedListWidget) shows how to create a checked list widget with QListWidget.
* [ComboBox](Controls/ComboBox) shows how to create a combo box with QComboBox.
* [Dial](Controls/Dial) shows how to create a dial with QDial.
* [DoubleSpinBox](Controls/DoubleSpinBox) shows how to create a double spin box with QDoubleSpinBox.
* [LCDNumber](Controls/LCDNumber) shows how to create a LCD number with QLCDNumber.
* [Label](Controls/Label) shows how to create a label with QLabel.
* [LineEdit](Controls/LineEdit) shows how to create a line edit with QLineEdit.
* [ListView](Controls/ListWidget) shows how to create a list view with QListView.
* [ListView2](Controls/ListView2) shows how to create a list view with QTreeView.
* [ListWidget](Controls/ListWidget) shows how to create a list widget with QListWidget.
* [PictureBox](Controls/PictureBox) shows how to create a picture box with QLabel.
* [PictureBox2](Controls/PictureBox2) shows how to create a picture box with QGraphicsPixmapItem.
* [ProgressBar](Controls/ProgressBar) shows how to create a ProgressBar with QProgress.
* [PushButton](Controls/PushButton) shows how to create a button and Event Click with QPushButton.
* [RadioButton](Controls/RadioButton) shows how to create a radio button with QRadioButton.
* [Slider](Controls/Slider) shows how to create a slider with QSlider.
* [SpinBox](Controls/SpinBox) shows how to create a spin box with QSpinBox.
* [SpinButton](Controls/SpinButton) shows how to create a spin button with QSpinBox.
* [ToggleButton](Controls/ToggleButton) shows how to create a toggle button with QPushButton.
* [TreeView](Controls/TreeView) shows how to create a three view with QTreeView.
* [TreeWidget](Controls/TreeWidget) shows how to create a three widget with QTreeWidget.
* [Widget](Controls/ToggleButton) shows how to create a widget with QWidget.

## Custom Controls

Expand Down
46 changes: 23 additions & 23 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,29 +19,29 @@ shows how to use Qt widgets only by programming code (c++17).

## Common Controls

* [CheckBox](Qt.Widgets/CommonControls/CheckBox) shows how to create a check box with QCheckBox.
* [CheckedListWidget](Qt.Widgets/CommonControls/CheckedListWidget) shows how to create a checked list widget with QListWidget.
* [ComboBox](Qt.Widgets/CommonControls/ComboBox) shows how to create a combo box with QComboBox.
* [Dial](Qt.Widgets/CommonControls/Dial) shows how to create a dialx with QDial.
* [DoubleSpinBox](Qt.Widgets/CommonControls/DoubleSpinBox) shows how to create a double spin box with QDoubleSpinBox.
* [LCDNumber](Qt.Widgets/CommonControls/LCDNumber) shows how to create a LCD number with QLCDNumber.
* [Label](Qt.Widgets/CommonControls/Label) shows how to create a label with QLabel.
* [LineEdit](Qt.Widgets/CommonControls/LineEdit) shows how to create a line edit with QLineEdit.
* [ListView](Qt.Widgets/CommonControls/ListWidget) shows how to create a list view with QListView.
* [ListView2](Qt.Widgets/CommonControls/ListView2) shows how to create a list view with QTreeView.
* [ListWidget](Qt.Widgets/CommonControls/ListWidget) shows how to create a list widget with QListWidget.
* [PictureBox](Qt.Widgets/CommonControls/PictureBox) shows how to create a picture box with QLabel.
* [PictureBox2](Qt.Widgets/CommonControls/PictureBox2) shows how to create a picture box with QGraphicsPixmapItem.
* [ProgressBar](Qt.Widgets/CommonControls/ProgressBar) shows how to create a ProgressBar with QProgress.
* [PushButton](Qt.Widgets/CommonControls/PushButton) shows how to create a button and Event Click with QPushButton.
* [RadioButton](Qt.Widgets/CommonControls/RadioButton) shows how to create a radio button with QRadioButton.
* [Slider](Qt.Widgets/CommonControls/Slider) shows how to create a slider with QSlider.
* [SpinBox](Qt.Widgets/CommonControls/SpinBox) shows how to create a spin box with QSpinBox.
* [SpinButton](Qt.Widgets/CommonControls/SpinButton) shows how to create a spin button with QSpinBox.
* [ToggleButton](Qt.Widgets/CommonControls/ToggleButton) shows how to create a toggle button with QPushButton.
* [TreeView](Qt.Widgets/CommonControls/TreeView) shows how to create a three view with QTreeView.
* [TreeWidget](Qt.Widgets/CommonControls/TreeWidget) shows how to create a three widget with QTreeWidget.
* [Widget](Qt.Widgets/CommonControls/ToggleButton) shows how to create a widget with QWidget.
* [CheckBox](Qt.Widgets/Controls/CheckBox) shows how to create a check box with QCheckBox.
* [CheckedListWidget](Qt.Widgets/Controls/CheckedListWidget) shows how to create a checked list widget with QListWidget.
* [ComboBox](Qt.Widgets/Controls/ComboBox) shows how to create a combo box with QComboBox.
* [Dial](Qt.Widgets/Controls/Dial) shows how to create a dialx with QDial.
* [DoubleSpinBox](Qt.Widgets/Controls/DoubleSpinBox) shows how to create a double spin box with QDoubleSpinBox.
* [LCDNumber](Qt.Widgets/Controls/LCDNumber) shows how to create a LCD number with QLCDNumber.
* [Label](Qt.Widgets/Controls/Label) shows how to create a label with QLabel.
* [LineEdit](Qt.Widgets/Controls/LineEdit) shows how to create a line edit with QLineEdit.
* [ListView](Qt.Widgets/Controls/ListWidget) shows how to create a list view with QListView.
* [ListView2](Qt.Widgets/Controls/ListView2) shows how to create a list view with QTreeView.
* [ListWidget](Qt.Widgets/Controls/ListWidget) shows how to create a list widget with QListWidget.
* [PictureBox](Qt.Widgets/Controls/PictureBox) shows how to create a picture box with QLabel.
* [PictureBox2](Qt.Widgets/Controls/PictureBox2) shows how to create a picture box with QGraphicsPixmapItem.
* [ProgressBar](Qt.Widgets/Controls/ProgressBar) shows how to create a ProgressBar with QProgress.
* [PushButton](Qt.Widgets/Controls/PushButton) shows how to create a button and Event Click with QPushButton.
* [RadioButton](Qt.Widgets/Controls/RadioButton) shows how to create a radio button with QRadioButton.
* [Slider](Qt.Widgets/Controls/Slider) shows how to create a slider with QSlider.
* [SpinBox](Qt.Widgets/Controls/SpinBox) shows how to create a spin box with QSpinBox.
* [SpinButton](Qt.Widgets/Controls/SpinButton) shows how to create a spin button with QSpinBox.
* [ToggleButton](Qt.Widgets/Controls/ToggleButton) shows how to create a toggle button with QPushButton.
* [TreeView](Qt.Widgets/Controls/TreeView) shows how to create a three view with QTreeView.
* [TreeWidget](Qt.Widgets/Controls/TreeWidget) shows how to create a three widget with QTreeWidget.
* [Widget](Qt.Widgets/Controls/ToggleButton) shows how to create a widget with QWidget.

## Custom Controls

Expand Down

0 comments on commit faa5b5c

Please sign in to comment.