You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
102 lines
2.8 KiB
102 lines
2.8 KiB
/***************************************************************************
|
|
begin : Mon Feb 4 23:40:41 EST 2002
|
|
copyright : (C) 2002 - 2004 by Scott Wheeler
|
|
email : wheeler@kde.org
|
|
***************************************************************************/
|
|
|
|
/***************************************************************************
|
|
* *
|
|
* 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. *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
#ifndef JUK_H
|
|
#define JUK_H
|
|
|
|
#include <kmainwindow.h>
|
|
|
|
#include "playermanager.h"
|
|
|
|
class TQTimer;
|
|
class TQListViewItem;
|
|
|
|
class KToggleAction;
|
|
class KSelectAction;
|
|
class KToolBarPopupAction;
|
|
class KGlobalAccel;
|
|
|
|
class SliderAction;
|
|
class StatusLabel;
|
|
class SystemTray;
|
|
class PlayerManager;
|
|
class PlaylistSplitter;
|
|
|
|
class JuK : public KMainWindow
|
|
{
|
|
Q_OBJECT
|
|
TQ_OBJECT
|
|
|
|
public:
|
|
JuK(TQWidget* parent = 0, const char *name = 0);
|
|
virtual ~JuK();
|
|
virtual KActionCollection *actionCollection() const;
|
|
|
|
private:
|
|
void setupLayout();
|
|
void setupActions();
|
|
void setupSystemTray();
|
|
void setupGlobalAccels();
|
|
void createDirs();
|
|
|
|
void keyPressEvent(TQKeyEvent *);
|
|
|
|
/**
|
|
* readSettings() is separate from readConfig() in that it contains settings
|
|
* that need to be read before the GUI is setup.
|
|
*/
|
|
void readSettings();
|
|
void readConfig();
|
|
void saveConfig();
|
|
|
|
virtual bool queryExit();
|
|
virtual bool queryClose();
|
|
|
|
private slots:
|
|
void slotShowHide();
|
|
void slotAboutToQuit();
|
|
void slotQuit();
|
|
void slotToggleSystemTray(bool enabled);
|
|
void slotEditKeys();
|
|
void slotConfigureTagGuesser();
|
|
void slotConfigureFileRenamer();
|
|
void slotUndo();
|
|
void slotCheckAlbumNextAction(bool albumRandomEnabled);
|
|
void slotProcessArgs();
|
|
|
|
private:
|
|
PlaylistSplitter *m_splitter;
|
|
StatusLabel *m_statusLabel;
|
|
SystemTray *m_systemTray;
|
|
|
|
SliderAction *m_sliderAction;
|
|
KToggleAction *m_randomPlayAction;
|
|
KToggleAction *m_toggleSystemTrayAction;
|
|
KToggleAction *m_toggleDockOnCloseAction;
|
|
KToggleAction *m_togglePopupsAction;
|
|
KToggleAction *m_toggleSplashAction;
|
|
KToggleAction *m_loopPlaylistAction;
|
|
KSelectAction *m_outputSelectAction;
|
|
|
|
PlayerManager *m_player;
|
|
KGlobalAccel *m_accel;
|
|
|
|
bool m_startDocked;
|
|
bool m_showSplash;
|
|
bool m_shuttingDown;
|
|
};
|
|
|
|
#endif
|