[QGIS Commit] r9385 - trunk/external_plugins/cdp2/src/gui

svn_qgis at osgeo.org svn_qgis at osgeo.org
Tue Sep 23 08:38:39 EDT 2008


Author: timlinux
Date: 2008-09-23 08:38:39 -0400 (Tue, 23 Sep 2008)
New Revision: 9385

Modified:
   trunk/external_plugins/cdp2/src/gui/climatedataprocessorgui.cpp
   trunk/external_plugins/cdp2/src/gui/climatedataprocessorgui.h
Log:
Stubs for file selector buttons

Modified: trunk/external_plugins/cdp2/src/gui/climatedataprocessorgui.cpp
===================================================================
--- trunk/external_plugins/cdp2/src/gui/climatedataprocessorgui.cpp	2008-09-23 12:21:43 UTC (rev 9384)
+++ trunk/external_plugins/cdp2/src/gui/climatedataprocessorgui.cpp	2008-09-23 12:38:39 UTC (rev 9385)
@@ -143,3 +143,36 @@
   QApplication::processEvents();
   */
 }
+
+void ClimateDataProcessorGui::on_pbnMeanTemp_clicked()
+{
+  leMeanTemp->setText("hello world");
+}
+void ClimateDataProcessorGui::on_pbnMinTemp_clicked()
+{
+  leMinTemp->setText("hello world");
+}
+void ClimateDataProcessorGui::on_pbnMaxTemp_clicked()
+{
+  leMaxTemp->setText("hello world");
+}
+void ClimateDataProcessorGui::on_pbnDiurnalTemp_clicked()
+{
+  leDiurnalTemp->setText("hello world");
+}
+void ClimateDataProcessorGui::on_pbnMeanPrecipitation_clicked()
+{
+  leMeanPrecipitation->setText("hello world");
+}
+void ClimateDataProcessorGui::on_pbnFrostDays_clicked()
+{
+  leFrostDays->setText("hello world");
+}
+void ClimateDataProcessorGui::on_pbnTotalSolarRad_clicked()
+{
+  leTotalSolarRadiation->setText("hello world");
+}
+void ClimateDataProcessorGui::on_pbnOutputPath_clicked()
+{
+  leOutputPath->setText("hello world");
+}

Modified: trunk/external_plugins/cdp2/src/gui/climatedataprocessorgui.h
===================================================================
--- trunk/external_plugins/cdp2/src/gui/climatedataprocessorgui.h	2008-09-23 12:21:43 UTC (rev 9384)
+++ trunk/external_plugins/cdp2/src/gui/climatedataprocessorgui.h	2008-09-23 12:38:39 UTC (rev 9385)
@@ -47,6 +47,24 @@
   ~ClimateDataProcessorGui();
 
 private slots:
+  /** Auto connect slot to let the user select a mean temp file */
+  void on_pbnMeanTemp_clicked();
+  /** Auto connect slot to let the user select a min temp file */
+  void on_pbnMinTemp_clicked();
+  /** Auto connect slot to let the user select a max temp file */
+  void on_pbnMaxTemp_clicked();
+  /** Auto connect slot to let the user select a diurnal temp file */
+  void on_pbnDiurnalTemp_clicked();
+  /** Auto connect slot to let the user select a mean annual 
+   * precipitation file */
+  void on_pbnMeanPrecipitation_clicked();
+  /** Auto connect slot to let the user select a frost days file */
+  void on_pbnFrostDays_clicked();
+  /** Auto connect slot to let the user select a total solar radiation file */
+  void on_pbnTotalSolarRad_clicked();
+  /** Auto connect slot to let the user select a output path */
+  void on_pbnOutputPath_clicked();
+   
   /** Runs when the close button is pressed and saves current form state
   *
   */



More information about the QGIS-commit mailing list