summaryrefslogtreecommitdiffstats
path: root/ksplashml/kcmksplash/installer.h
blob: 98dc1fc39341675ba3a83273e15459b6ee55cae5 (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
/***************************************************************************
 *   Copyright Ravikiran Rajagopal 2003                                    *
 *   ravi@ee.eng.ohio-state.edu                                            *
 *   Copyright (c) 1998 Stefan Taferner <taferner@kde.org>                 *
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License (version 2) as   *
 *   published by the Free Software Foundation.                            *
 *                                                                         *
 ***************************************************************************/
#ifndef SPLASHINSTALLER_H
#define SPLASHINSTALLER_H

#include <tqmap.h>
#include <tqpoint.h>

#include <klistbox.h>
#include <kurl.h>

class QLabel;
class QTextEdit;
class QPushButton;
class ThemeListBox;

class SplashInstaller : public QWidget
{
  Q_OBJECT
public:
  SplashInstaller(TQWidget *parent=0, const char *aName=0, bool aInit=FALSE);
  ~SplashInstaller();

  virtual void load();
  virtual void load( bool useDefaults );
  virtual void save();
  virtual void defaults();

signals:
  void changed( bool state );

protected slots:
  virtual void slotAdd();
  virtual void slotRemove();
  virtual void slotTest();
  virtual void slotSetTheme(int);
  void slotFilesDropped(const KURL::List &urls);

protected:
  /** Scan Themes directory for available theme packages */
  virtual void readThemesList();
  /** add a theme to the list, returns the list index */
  int addTheme(const TQString &path, const TQString &name);
  void addNewTheme(const KURL &srcURL);
  int findTheme( const TQString &theme );

private:
  bool mGui;
  ThemeListBox *mThemesList;
  TQPushButton *mBtnAdd, *mBtnRemove, *mBtnTest;
  TQTextEdit *mText;
  TQLabel *mPreview;
};

class ThemeListBox: public KListBox
{
  Q_OBJECT
public:
  ThemeListBox(TQWidget *parent);
  TQMap<TQString, TQString> text2path;

signals:
  void filesDropped(const KURL::List &urls);

protected:
  void dragEnterEvent(TQDragEnterEvent* event);
  void dropEvent(TQDropEvent* event);
  void mouseMoveEvent(TQMouseEvent *e);

protected slots:
  void slotMouseButtonPressed(int button, TQListBoxItem *item, const TQPoint &p);

private:
  TQString mDragFile;
  TQPoint mOldPos;

};

#endif