Lot of fixes for everything.

This commit is contained in:
Tobias Rundstrom 2006-02-21 00:29:28 -03:00
parent bdb2d70683
commit d356989d5e
18 changed files with 253 additions and 47 deletions

View file

@ -16,6 +16,7 @@ class MainWindow;
#include "Skin.h"
#include "XmmsQT4.h"
#include "MainDisplay.h"
#include "ShadedDisplay.h"
using namespace std;
@ -25,14 +26,27 @@ class MainWindow : public QMainWindow
public:
MainWindow (QWidget *parent);
~MainWindow (void);
Skin *getSkin (void);
void setNoDrag (bool b);
XMMSHandler *getHandler () { return m_handler; }
MainDisplay *getMD () { return m_display; }
void setNoDrag (bool b);
ShadedDisplay *getSD () { return m_shaded; }
bool getShaded (void) { return m_isshaded; }
public slots:
void switchDisplay ();
private:
bool m_isshaded;
Skin *skin;
XMMSHandler *m_handler;
MainDisplay *m_display;
ShadedDisplay *m_shaded;
};
#endif