summaryrefslogtreecommitdiffstats
path: root/src/fbsplash.h
diff options
context:
space:
mode:
authorJonathan Bauer2011-06-17 16:02:53 +0200
committerJonathan Bauer2011-06-17 16:02:53 +0200
commit50efdffaa4f096fd4fda812e46765c5c018bb1b4 (patch)
treeb51b98be127abcbef36445d00b0e6f4296cad4f6 /src/fbsplash.h
parenttesting positions and sizes of floating widgets to find the better layout alt... (diff)
downloadfbsplash-50efdffaa4f096fd4fda812e46765c5c018bb1b4.tar.gz
fbsplash-50efdffaa4f096fd4fda812e46765c5c018bb1b4.tar.xz
fbsplash-50efdffaa4f096fd4fda812e46765c5c018bb1b4.zip
the geometric way to layout label/progress bar, TODO proper central widget...
Diffstat (limited to 'src/fbsplash.h')
-rw-r--r--src/fbsplash.h15
1 files changed, 11 insertions, 4 deletions
diff --git a/src/fbsplash.h b/src/fbsplash.h
index 31bf591..145b92a 100644
--- a/src/fbsplash.h
+++ b/src/fbsplash.h
@@ -16,22 +16,29 @@
#include <QtGui>
-class fbsplash: public QMainWindow {
+//#include "ui_fbsplash.h"
+//namespace Ui { class fbsplash; }
+
+class fbsplash: public QMainWindow{
Q_OBJECT
public:
fbsplash();
private:
+ void createActions();
void setupTheme();
- // ** TESTING STUFF **
+
+ // ** TESTING **
+
void printSize();
- void createActions();
QAction* _quit;
QAction* _printSize;
QLabel* _label;
+ //Ui::fbsplash *ui;
+
+ // ** TESTING **
- // ** TESTING STUFF **
private slots:
void printSizeAction();
};