📄 qgsconnectiondialog.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 + -