/*************************************************************************** * __________ __ ___. * Open \______ \ ____ ____ | | _\_ |__ _______ ___ * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ * \/ \/ \/ \/ \/ * * Copyright (C) 2007 by Rostilav Checkan * $Id$ * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY * KIND, either express or implied. * ****************************************************************************/ #ifndef MAINWINDOWIMPL_H #define MAINWINDOWIMPL_H // #include #include #include #include "wpsstate.h" #include "ui_mainwindow.h" #include "wpsstate.h" #include "qwpsstate.h" #include "qtrackstate.h" #include "qwpsdrawer.h" class QWpsEditorWindow : public QMainWindow, public Ui::MainWindow { Q_OBJECT QWpsState wpsState; QTrackState trackState; QPointer drawer; QHash actAudios; QActionGroup *actGroupAudios; QSignalMapper *audiosSignalMapper; QHash actTargets; QActionGroup *actGroupTargets; QSignalMapper *targetsSignalMapper; int scrollingLine; protected: void connectActions(); void postWpsUpdate(); public: QWpsEditorWindow( QWidget * parent = 0, Qt::WFlags f = 0 ); void logMsg(QString s); private slots: void slotOpenWps(); void slotVerboseLevel(); void slotWpsStateChanged(wpsstate); void slotTrackStateChanged(trackstate); void slotUpdatePlainWps(); void slotPlainDocModChanged(bool m); void slotSetTarget(const QString &); signals: void signalAudioStatusChanged(int); void signalSetTarget(const QString &); }; #endif