Promoe kind of works.
This commit is contained in:
parent
9fb1376afe
commit
b8ec3a6cae
15 changed files with 183 additions and 65 deletions
11
MainWindow.h
11
MainWindow.h
|
@ -1,6 +1,10 @@
|
|||
#ifndef __MAINWINDOW_H__
|
||||
#define __MAINWINDOW_H__
|
||||
|
||||
class MainWindow;
|
||||
|
||||
#include "XMMSHandler.h"
|
||||
|
||||
#include <iostream>
|
||||
|
||||
#include <QMainWindow>
|
||||
|
@ -9,13 +13,10 @@
|
|||
#include <QWidget>
|
||||
#include <QHash>
|
||||
|
||||
#include <xmmsclient/xmmsclient.h>
|
||||
|
||||
#include "Skin.h"
|
||||
#include "XmmsQT4.h"
|
||||
#include "MainDisplay.h"
|
||||
|
||||
|
||||
using namespace std;
|
||||
|
||||
class MainWindow : public QMainWindow
|
||||
|
@ -25,8 +26,12 @@ class MainWindow : public QMainWindow
|
|||
MainWindow(void);
|
||||
~MainWindow(void);
|
||||
Skin *getSkin(void);
|
||||
XMMSHandler *getHandler () { return m_handler; }
|
||||
MainDisplay *getMD () { return m_display; }
|
||||
private:
|
||||
Skin *skin;
|
||||
XMMSHandler *m_handler;
|
||||
MainDisplay *m_display;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue