summaryrefslogtreecommitdiffstats
path: root/noatun-plugins/dub/dub/dubview.h
blob: b618b175da25813f30f4d8f4f3922640da00267a (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
/***************************************************************************
                          dubview.h  -  description
                             -------------------
    begin                : Tue Oct 23 01:44:51 EEST 2001
    copyright            : (C) 2001 by Eray Ozkural (exa)
    email                : erayo@cs.bilkent.edu.tr
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   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 DUBVIEW_H
#define DUBVIEW_H

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

// include files for TQt
#include <tqwidget.h>

#include <fileselectorwidget.h>

// the viewing widget for the playlist
class DubView : public FileSelectorWidget
{
 TQ_OBJECT
  
 public:
 /** Constructor for the main view */
 DubView(TQWidget *parent = 0);
 /** Destructor for the main view */
 ~DubView();


  /** contains the implementation for printing functionality */
  void print(TQPrinter *pPrinter);
  /** Return item list of view */
  TQPtrList<KFileItem>& items();
  /** select a particular file */
  void selectFile(KFileItem* file);

 private:

};

#endif // DUBVIEW_H