~ubuntu-branches/ubuntu/quantal/qgis/quantal

« back to all changes in this revision

Viewing changes to plugins/grid_maker/pluginguibase.ui.h

  • Committer: Bazaar Package Importer
  • Author(s): William Grant
  • Date: 2007-05-06 13:42:32 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20070506134232-pyli6t388w5asd8x
Tags: 0.8.0-3ubuntu1
* Merge from Debian unstable. Remaining Ubuntu changes:
  - debian/rules, debian/qgis.install, debian/qgis.dirs debian/qgis.desktop:
    Add and install .desktop.
* debian/qgis.desktop: Remove Applications category; it's not real.
* Modify Maintainer value to match Debian-Maintainer-Field Spec

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/****************************************************************************
2
 
** ui.h extension file, included from the uic-generated form implementation.
3
 
**
4
 
** If you wish to add, delete or rename functions or slots use
5
 
** Qt Designer which will update this file, preserving your code. Create an
6
 
** init() function in place of a constructor, and a destroy() function in
7
 
** place of a destructor.
8
 
*****************************************************************************/
9
 
 
10
 
 
11
 
 
12
 
void QgsGridMakerPluginGuiBase::pbnOK_clicked()
13
 
{
14
 
 
15
 
}
16
 
 
17
 
 
18
 
void QgsGridMakerPluginGuiBase::pbnSelectInputFile_clicked()
19
 
{
20
 
 
21
 
}
22
 
 
23
 
 
24
 
void QgsGridMakerPluginGuiBase::pbnSelectOutputFile_clicked()
25
 
{
26
 
 
27
 
}
28
 
 
29
 
 
30
 
void QgsGridMakerPluginGuiBase::pbnCancel_clicked()
31
 
{
32
 
 
33
 
}
34
 
 
35
 
 
36
 
void QgsGridMakerPluginGuiBase::leInputFile_textChanged( const QString & theQString)
37
 
{
38
 
  if (theQString != "") 
39
 
    {
40
 
      pbnOK->setEnabled(true);
41
 
  }
42
 
  else
43
 
  {
44
 
   pbnOK->setEnabled(false);   
45
 
  }
46
 
}
47
 
 
48
 
 
49
 
void QgsGridMakerPluginGuiBase::leOutputShapeFile_textChanged( const QString & theQString )
50
 
{
51
 
  if (theQString != "") 
52
 
    {
53
 
      pbnOK->setEnabled(true);
54
 
  }
55
 
  else
56
 
  {
57
 
   pbnOK->setEnabled(false);   
58
 
  }
59
 
}