blob: 9dca7c90a125a233e93cfbe526cc2aab7a57994f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
/***************************************************************************
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
|