File: runcommandwidget.h

package info (click to toggle)
packagesearch 2.7.5
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 3,248 kB
  • ctags: 2,160
  • sloc: cpp: 12,397; perl: 252; makefile: 69; sh: 13
file content (36 lines) | stat: -rw-r--r-- 715 bytes parent folder | download | duplicates (10)
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
//
// C++ Interface: runcommandwidget
//
// Description: 
//
//
// Author: Benjamin Mesing <bensmail@gmx.net>, (C) 2005
//
// Copyright: See COPYING file that comes with this distribution
//
//
#ifndef __RUNCOMMANDWIDGET_H_2005_08_28
#define __RUNCOMMANDWIDGET_H_2005_08_28

#include <qdialog.h>
#include <ui_runcommandwidget.h>

/**
@author Benjamin Mesing
*/
class RunCommandWidget : public QDialog, public Ui::RunCommandWidget
{
Q_OBJECT
public:
	RunCommandWidget(QWidget *parent = 0, const char *name = 0);
	~RunCommandWidget();
	void replaceLastLine( const QString line );
	void append( const QString line );
public slots:
	void onClose();
signals:
	void quit();

};

#endif	// __RUNCOMMANDWIDGET_H_2005_08_28