File: IcePathDialog.h

package info (click to toggle)
icemc 0.2.4-2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 256 kB
  • ctags: 247
  • sloc: cpp: 2,211; makefile: 44
file content (34 lines) | stat: -rw-r--r-- 668 bytes parent folder | download | duplicates (3)
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
/**
 * IceMC - a menu editor for IceWM
 * Copyright (c) 2000 Georg Mittendorfer
 */

#ifndef ICEPATHDIALOG_H_USED
#define ICEPATHDIALOG_H_USED

#include "IceMC.h"

#include <qdialog.h>
#include <qlineedit.h>

class IcePathDialog : public QDialog
{
  Q_OBJECT
public:
  IcePathDialog(QWidget * parent=0, const char * name=0, bool modal=false, WFlags f=0);
  virtual ~IcePathDialog();
  virtual QString getCustomLibPath();
  virtual QString getCustomIconPath();
  static void clearCustomPaths();
protected slots:
	virtual void accept(); 
private:
  static QString customLibPath;
  static QString customIconPath;
  QLineEdit* libEdit;
  QLineEdit* iconEdit;
};

#endif