mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-13 00:03:09 -04:00
44 lines
1.5 KiB
C++
44 lines
1.5 KiB
C++
/***************************************************************************
|
|
qgstipgui.h - description
|
|
-------------------
|
|
begin : Fri 18 Feb 2011
|
|
copyright : (C) 2011 by Tim Sutton
|
|
email : tim@linfiniti.com
|
|
***************************************************************************/
|
|
|
|
/***************************************************************************
|
|
* *
|
|
* 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 QGSTIPGUI_H
|
|
#define QGSTIPGUI_H
|
|
|
|
#include "ui_qgstipguibase.h"
|
|
#include "qgis_app.h"
|
|
class QgsTip;
|
|
|
|
class APP_EXPORT QgsTipGui : public QDialog, private Ui::QgsTipGuiBase
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
QgsTipGui( QWidget *parent = nullptr );
|
|
~QgsTipGui();
|
|
|
|
private:
|
|
void init();
|
|
void showTip( QgsTip );
|
|
|
|
int mTipPosition;
|
|
|
|
private slots:
|
|
void on_cbxDisableTips_toggled( bool flag );
|
|
void prevClicked();
|
|
void nextClicked();
|
|
};
|
|
|
|
#endif
|