~mixxxdevelopers/mixxx/features_library_scanner

« back to all changes in this revision

Viewing changes to mixxx/mixxx/mixxxview.h

  • Committer: tuehaste
  • Date: 2002-02-26 11:12:07 UTC
  • Revision ID: vcs-imports@canonical.com-20020226111207-5rly26cj9gdd19ba
Initial revision

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
                          mixxxview.h  -  description
 
3
                             -------------------
 
4
    begin                : Mon Feb 18 09:48:17 CET 2002
 
5
    copyright            : (C) 2002 by Tue and Ken Haste Andersen
 
6
    email                : 
 
7
 ***************************************************************************/
 
8
 
 
9
/***************************************************************************
 
10
 *                                                                         *
 
11
 *   This program is free software; you can redistribute it and/or modify  *
 
12
 *   it under the terms of the GNU General Public License as published by  *
 
13
 *   the Free Software Foundation; either version 2 of the License, or     *
 
14
 *   (at your option) any later version.                                   *
 
15
 *                                                                         *
 
16
 ***************************************************************************/
 
17
 
 
18
#ifndef MIXXXVIEW_H
 
19
#define MIXXXVIEW_H
 
20
 
 
21
// include files for QT
 
22
#include <qwidget.h>
 
23
#include <qlayout.h>
 
24
 
 
25
// application specific includes
 
26
#include "mixxxdoc.h"
 
27
#include "dlgplaycontrol.h"
 
28
#include "dlgchannel.h"
 
29
#include "dlgplaylist.h"
 
30
 
 
31
/**
 
32
 * This class provides an incomplete base for your application view. 
 
33
 */
 
34
 
 
35
class MixxxView : public QWidget
 
36
{
 
37
  Q_OBJECT
 
38
  public:
 
39
    MixxxView(QWidget *parent=0, MixxxDoc* doc=0);
 
40
    ~MixxxView();
 
41
    DlgPlaycontrol *playcontrol;
 
42
        DlgChannel      *channel;
 
43
        DlgPlaylist *playlist;
 
44
 
 
45
  protected slots:
 
46
    void slotDocumentChanged();
 
47
 
 
48
  private:
 
49
        //QHBoxLayout *hMainBox;
 
50
        QGridLayout *mainGrid;
 
51
 
 
52
};
 
53
 
 
54
#endif