QGIS/src/app/qgstipgui.h
Denis Rouzaud 7812d4fb17 remove the-prefix from source code
this might result in variables having the same name as some methods
2017-02-21 18:14:58 +01:00

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