blob: a7c1adeda8156ff984bea099affa9f9cdad45cf5 (
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
 | /* 
 *
 * $Id: k3bview.h 619556 2007-01-03 17:38:12Z trueg $
 * Copyright (C) 2003 Sebastian Trueg <trueg@k3b.org>
 *
 * This file is part of the K3b project.
 * Copyright (C) 1998-2007 Sebastian Trueg <trueg@k3b.org>
 *
 * 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.
 * See the file "COPYING" for the exact licensing terms.
 */
#ifndef K3BVIEW_H
#define K3BVIEW_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
// include files for TQt
#include <tqwidget.h>
#include <tqptrdict.h>
#include <kxmlguiclient.h>
#include <kurl.h>
class K3bDoc;
class TDEActionCollection;
class K3bFillStatusDisplay;
class K3bProjectBurnDialog;
class K3bToolBox;
class K3bProjectPlugin;
/** 
 *
 */
class K3bView : public TQWidget, public KXMLGUIClient
{
  TQ_OBJECT
  
 public:
  /** 
   *
   */
  K3bView( K3bDoc* pDoc, TQWidget* parent, const char *name = 0 );
  virtual ~K3bView();
	
  /** 
   * returns a pointer to the document connected to the view
   * @deprecated use doc()
   */
  K3bDoc* getDocument() const { return m_doc; }
  K3bDoc* doc() const { return m_doc; }
  void setMainWidget( TQWidget* );
 public slots:
  /**
   * Default impl. brings up the burnDialog via newBurnDialog() with writing
   */
  virtual void slotBurn();
  /**
   * Default impl. brings up the burnDialog via newBurnDialog() without writing
   */
  virtual void slotProperties();
  /**
   * Add an url to the doc. The default implementation simply calls 
   * addUrls.
   */
  virtual void addUrl( const KURL& );
  /**
   * Add urls to the doc. The default implementation calls doc()->addUrls.
   */
  virtual void addUrls( const KURL::List& );
 protected:
  /**
   * Protected since the BurnDialog is not part of the API.
   */
  virtual K3bProjectBurnDialog* newBurnDialog( TQWidget* = 0, const char* = 0 ) = 0;
  /**
   * Call this to add the projectplugin buttons to the toolbox. It is not called 
   * automatically to make it possible to add other buttons before.
   *
   * @param projectType the type of the project (@see K3bProjectPlugin)
   */
  void addPluginButtons( int projectType );
  K3bFillStatusDisplay* fillStatusDisplay() const { return m_fillStatusDisplay; }
  K3bToolBox* toolBox() const { return m_toolBox; }
 private slots:
  void slotPluginButtonClicked();
 private:
  K3bDoc* m_doc;
  K3bFillStatusDisplay* m_fillStatusDisplay;
  K3bToolBox* m_toolBox;
  TQPtrDict<K3bProjectPlugin> m_plugins;
};
#endif // K3BVIEW_H
 |