Check-in Number:
|
3861 | |
Date: |
2002-Dec-12 14:35:45 (local)
2002-Dec-12 13:35:45 (UTC) |
User: | ms |
Branch: | |
Comment: |
Document code. |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/as/as-gui/as_gui.cpp 1.27 -> 1.28
--- as_gui.cpp 2002/12/12 12:45:46 1.27
+++ as_gui.cpp 2002/12/12 13:35:45 1.28
@@ -55,17 +55,16 @@
// setSizePolicy(QSizePolicy((QSizePolicy::SizeType)0,
// (QSizePolicy::SizeType)0, 0, 0, sizePolicy().hasHeightForWidth()));
- // Abstractly build main widgets
try {
- setupPrefs();
- setupActions();
- setupMenubar();
- setupToolbars();
- setupCentralwidget();
- setupStatusbar();
- setupTable();
- setupEditlay();
- setupColumns();
+ setupPrefs(); // Load general preferences
+ setupActions(); // Create and initialize actions
+ setupMenubar(); // Create and initialize menu bar
+ setupToolbars(); // Create and initialize tool bars
+ setupCentralwidget(); // Format the layout of related widgets
+ setupStatusbar(); // Create and initialize status bar
+ setupTable(); // Create and initialize table and cells
+ setupEditlay(); // Create and initialize edit controls
+ setupColumns(); // Prepare columns for viewing, sorting
}
catch (Genexcept& Genex) {
Genex.reportErr();
|
|