Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
move QgsSearchQuery builder from app to gui
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@14867 c8812cc2-4d05-0410-92ff-de0c093fc19c
- Loading branch information
jef
committed
Dec 8, 2010
1 parent
e554840
commit 67aefb3
Showing
6 changed files
with
22 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
class QgsSearchQueryBuilder : QDialog | ||
{ | ||
%TypeHeaderCode | ||
#include <qgssearchquerybuilder.h> | ||
%End | ||
|
||
public: | ||
QgsSearchQueryBuilder( QgsVectorLayer* layer, QWidget *parent = 0, Qt::WFlags fl = QgisGui::ModalDialogFlags ); | ||
~QgsSearchQueryBuilder(); | ||
|
||
//! returns newly created search string | ||
QString searchString(); | ||
|
||
//! change search string shown in text field | ||
void setSearchString( QString searchString ); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters