summaryrefslogtreecommitdiffstats
path: root/ksysv/ServiceDlg.h
blob: 0b84b198962a54c1eb5e0b478532e496739250a7 (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
/***************************************************************************
    begin                : Sun Oct 3 1999
    copyright            : (C) 1999 by Peter Putzer
    email                : putzer@kde.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; version 2.                              *
 *                                                                         *
 ***************************************************************************/

#ifndef KSV_SERVICE_DIALOG_H
#define KSV_SERVICE_DIALOG_H

#include <kdialogbase.h>
#include <tqmap.h>

class KSVDragList;
class KSVItem;
class TQString;
class TQComboBox;

class ServiceDlg : public KDialogBase
{
  Q_OBJECT
  

public:
  ServiceDlg (const TQString& action, const TQString& label,
	      TQWidget* parent = 0, const char* name = 0);
  virtual ~ServiceDlg();

  int count() const;

  void resetChooser (KSVDragList* data, bool edit);

public slots:
  virtual void show ();
  virtual void hide ();
  void toggle ();

private:
  TQComboBox* mServices;
  TQMap<TQString,const KSVItem*> mMapServices;

protected slots:
  virtual void slotApply();

signals:
  void doAction (const TQString& on);
  void display (bool);
};

#endif