qt5
Last change
on this file since 07ae23a was
07ae23a,
checked in by timkoma <timkoma@…>, 13 years ago
|
refactoring of the TABS
|
-
Property mode set to
100644
|
File size:
340 bytes
|
Line | |
---|
1 | |
---|
2 | #include "searchhead.h" |
---|
3 | |
---|
4 | SearchHead::SearchHead(QWidget *parent) |
---|
5 | : QWidget(parent) |
---|
6 | { |
---|
7 | setupUi(this); |
---|
8 | connect( searchButton, SIGNAL(clicked()), SLOT(searchButtonClicked())); |
---|
9 | } |
---|
10 | |
---|
11 | SearchHead::~SearchHead() |
---|
12 | { |
---|
13 | |
---|
14 | } |
---|
15 | |
---|
16 | |
---|
17 | void SearchHead::searchButtonClicked() |
---|
18 | { |
---|
19 | qDebug() << "SearchHead::searchButtonClicked()"; |
---|
20 | emit( searchClicked() ); |
---|
21 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.