summaryrefslogtreecommitdiffstats
path: root/languages/cpp/app_templates/noatunui/plugin_impl.h
blob: e918f9251c6761643885de6486078720e7aab3b6 (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

#ifndef %{APPNAMEUC}_IMPL_H
#define %{APPNAMEUC}_IMPL_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 QSlider;
class QPushButton;
class KStatusBar;

/**
 * @short Main window class
 * @author %{AUTHOR} <%{EMAIL}>
 * @version 0.1
 * Note: You can user _every_ widget for implementing your userinterface.
 */
class %{APPNAME}UI : public TQWidget, public UserInterface
{
Q_OBJECT
public:
    %{APPNAME}UI();
    virtual ~%{APPNAME}UI();
    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);
    /** RMB -> context menu  */
    virtual void mouseReleaseEvent(TQMouseEvent *);
    virtual bool eventFilter(TQObject*, TQEvent*);
    /** volume control  */
    virtual void wheelEvent(TQWheelEvent *e);

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

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

    /** "show/hide playlist" button  */
    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 // %{APPNAMEUC}_IMPL_H