repo.or.cz
/
opsoft.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge branch 'experimental'
[opsoft.git]
/
VimLine
/
src
/
dialogimpl.h
blob
b118bd26184e35415c96f7ba2754aa4811cc091b
1
#ifndef DIALOGIMPL_H
2
#define DIALOGIMPL_H
3
//
4
#include <QDialog>
5
#include <QProcess>
6
#include
"ui_dialog.h"
7
//
8
class
DialogImpl
:
public
QDialog
,
public Ui
::
Dialog
9
{
10
Q_OBJECT
11
public
slots
:
12
void
on_pushShow_clicked
(
bool
checked
);
13
public
:
14
QProcess
*
process
;
15
16
DialogImpl
(
QWidget
*
parent
=
0
,
Qt
::
WFlags f
=
0
);
17
private
slots
:
18
};
19
#endif
20
21
22
23