qgsconnectiondialog.h

来自「一个非常好的GIS开源新版本」· C头文件 代码 · 共 46 行

H
46
字号
/***************************************************************************                          qgsconnectiondialog.h  -  description                             -------------------    begin                : Thu Dec 10 2003    copyright            : (C) 2003 by Denis Antipov    email                :  ***************************************************************************//*************************************************************************** *                                                                         * *   This program is free software; you can redistribute it and/or modify  * *   it under the terms of the GNU General Public License as published by  * *   the Free Software Foundation; either version 2 of the License, or     * *   (at your option) any later version.                                   * *                                                                         * ***************************************************************************/#ifndef QGSCONNECTIONDIALOG_H#define QGSCONNECTIONDIALOG_H// $Id: qgsconnectiondialog.h 6475 2007-02-01 01:12:20Z telwertowski $#include "ui_qgsconnectiondialogbase.h"#include "qgisgui.h"class QgsConnectionDialog : public QDialog, private Ui::QgsConnectionDialogBase{  Q_OBJECT public:    QgsConnectionDialog(QWidget *parent = 0, const QString& connName = QString::null, Qt::WFlags fl = QgisGui::ModalDialogFlags);    ~QgsConnectionDialog();    void testConnection();    void saveConnection();    void helpInfo();public slots:  void on_buttonBox_accepted()      { saveConnection(); }  void on_buttonBox_rejected()      { reject(); }  void on_buttonBox_helpRequested() { helpInfo(); }  void on_btnConnect_clicked()      { testConnection(); }};#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?