⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 qgsconnectiondialog.h

📁 一个非常好的GIS开源新版本
💻 H
字号:
/***************************************************************************                          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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -