~ubuntu-branches/ubuntu/hoary/kdemultimedia/hoary

« back to all changes in this revision

Viewing changes to noatun/noatun/modules/liszt/EditWidget.h

  • Committer: Bazaar Package Importer
  • Author(s): Martin Schulze
  • Date: 2003-01-22 15:00:51 UTC
  • Revision ID: james.westby@ubuntu.com-20030122150051-uihwkdoxf15mi1tn
Tags: upstream-2.2.2
ImportĀ upstreamĀ versionĀ 2.2.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2000 Rik Hemsley (rikkus) <rik@kde.org>. All rights reserved.
 
3
 *
 
4
LICENSE
 
5
 */
 
6
 
 
7
#ifndef PLAYLIST_EDIT_WIDGET_H
 
8
#define PLAYLIST_EDIT_WIDGET_H
 
9
 
 
10
#include <qwidget.h>
 
11
 
 
12
#include "Track.h"
 
13
 
 
14
class ScoreWidget;
 
15
class PreviewWidget;
 
16
 
 
17
class EditWidget : public QWidget
 
18
{
 
19
  Q_OBJECT
 
20
 
 
21
  public:
 
22
 
 
23
    EditWidget();
 
24
    virtual ~EditWidget();
 
25
 
 
26
    void reset();
 
27
 
 
28
  protected:
 
29
 
 
30
    virtual void dragEnterEvent(QDragEnterEvent *event);
 
31
    virtual void dropEvent(QDropEvent *event);
 
32
 
 
33
    void closeEvent(QCloseEvent *);
 
34
 
 
35
  signals:
 
36
 
 
37
    void skipToTrack(long);
 
38
    void closed();
 
39
 
 
40
  private:
 
41
 
 
42
    ScoreWidget * scoreWidget_;
 
43
    PreviewWidget * previewWidget_;
 
44
};
 
45
 
 
46
#endif // PLAYLIST_EDIT_WIDGET_H