37 lines
610 B
C++
37 lines
610 B
C++
#ifndef __MAINWINDOW_H__
|
|
#define __MAINWINDOW_H__
|
|
|
|
class MainWindow;
|
|
|
|
#include "XMMSHandler.h"
|
|
|
|
#include <iostream>
|
|
|
|
#include <QMainWindow>
|
|
#include <QPixmap>
|
|
#include <QPainter>
|
|
#include <QWidget>
|
|
#include <QHash>
|
|
|
|
#include "Skin.h"
|
|
#include "XmmsQT4.h"
|
|
#include "MainDisplay.h"
|
|
|
|
using namespace std;
|
|
|
|
class MainWindow : public QMainWindow
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
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
|