Check-in Number:
|
4051 | |
Date: |
2003-Feb-17 18:19:33 (local)
2003-Feb-17 17:19:33 (UTC) |
User: | ms |
Branch: | |
Comment: |
Implemented local report generating slot, and use new class Reportpanel. |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/as/as-gui/TODO 1.88 -> 1.89
--- TODO 2003/02/14 20:16:18 1.88
+++ TODO 2003/02/17 17:19:33 1.89
@@ -76,6 +76,9 @@
Make Simplefile class non-Qt specific
Read and write karm format files with file extension detection
Offer general option 'Use vim keymap'
+Text revisions
+ Title case, sentence case, or lower case
+ Past tense, third person, style, usage...
Screwey user notes ;-)
----------------------
|
|
ossp-pkg/as/as-gui/as_slot.cpp 1.126 -> 1.127
--- as_slot.cpp 2003/02/14 19:27:03 1.126
+++ as_slot.cpp 2003/02/17 17:19:33 1.127
@@ -58,9 +58,11 @@
#include "as_generic.h" // Generic classes
#include "as_uuid.h" // UUID classes
#include "as_datedit.h" // Derived from QDateEdit
+#include "as_amount.h" // Derived from QTimeEdit
#include "as_crc.h" // Useful Qualistring class
#include "as_pref.h" // For Preferences class
#include "as_panel.h" // For Prefpanel class
+#include "as_reportpanel.h" // For Reportpanel class
#include "as_sfile.h" // For Simplefile class
#include "as_table.h" // For TiTable class
@@ -1556,8 +1558,12 @@
//
void Titraqform::genReport(void)
{
- Prototype Unimp;
- Unimp.doMbox();
+ Reportpanel *pReport = NULL; // The local report panel
+
+ // Create a new local report window
+ pReport = new Reportpanel(this, "Locreportpanel");
+ pReport->exec(); // Modal panel handler
+ delete pReport; // Dispose Panel object
}
//
|
|