summaryrefslogtreecommitdiffstats
path: root/noatun/modules/noatunui/userinterface.h
blob: d20b253609ba8e4149a3bd906a5812eac431e747 (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
#ifndef USERINTERFACE_H
#define USERINTERFACE_H

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <noatun/plugin.h>
#include <noatun/app.h>

// Pref dialog pointer global now for position saving
#include <noatun/pref.h>

class Player;
class TQSlider;
class TQPushButton;
class KStatusBar;

/**
 * @short Main window class
 * @author Charles Samuels <charles@kde.org>
 * @version 0.1
 */
class MilkChocolate : public TQWidget, public UserInterface
{
Q_OBJECT
public:
	MilkChocolate();
	virtual ~MilkChocolate();
	void load(const TQString& url);

protected:
	virtual void dragEnterEvent(TQDragEnterEvent *event);
	virtual void dropEvent(TQDropEvent *event);
	virtual void closeEvent(TQCloseEvent*);
	virtual void showEvent(TQShowEvent*e);
	virtual void mouseReleaseEvent(TQMouseEvent *);
	virtual bool eventFilter(TQObject*, TQEvent*);
	virtual void wheelEvent(TQWheelEvent *e);

protected:
	TQSlider *seeker() const { return mSeeker; }
	KStatusBar *statusBar() const { return mStatusBar; }

public slots:
	void slotPlaying();
	void slotStopped();
	void slotPaused();

	void playlistShown();
	void playlistHidden();

	void slotTimeout();
	void sliderMoved(int seconds);
	void changeLoopType(int t);
	void skipToWrapper(int second);

signals:
	void skipTo( int ); // emitted by skipToWrapper()

private slots:
	void changeStatusbar(const TQString& text, const TQString &text2=0);
	void changeCaption(const TQString& text);
	void popup();

private:
	TQPushButton *mBack, *mStop, *mPlay, *mForward, *mPlaylist, *mPopup, *mLoop;
	TQSlider *mSeeker, *mVolume;
	KStatusBar *mStatusBar;
};

#endif