QGIS API Documentation  3.24.2-Tisler (13c1a02865)
qgsdataitemguiprovider.cpp
Go to the documentation of this file.
1 /***************************************************************************
2  qgsdataitemguiprovider.cpp
3  --------------------------------------
4  Date : October 2018
5  Copyright : (C) 2018 by Nyall Dawson
6  Email : nyall dot dawson at gmail dot com
7  ***************************************************************************
8  * *
9  * This program is free software; you can redistribute it and/or modify *
10  * it under the terms of the GNU General Public License as published by *
11  * the Free Software Foundation; either version 2 of the License, or *
12  * (at your option) any later version. *
13  * *
14  ***************************************************************************/
15 
16 #include "qgsdataitemguiprovider.h"
17 #include "qgsdataitem.h"
18 #include "qgsproviderregistry.h"
19 #include "qgsprovidermetadata.h"
21 #include "qgsmessagebar.h"
22 #include <QMessageBox>
23 //
24 // QgsDataItemGuiContext
25 //
26 
28 {
29  return mMessageBar;
30 }
31 
33 {
34  mMessageBar = messageBar;
35 }
36 
37 //
38 // QgsDataItemGuiProvider
39 //
40 
41 void QgsDataItemGuiProvider::populateContextMenu( QgsDataItem *, QMenu *, const QList<QgsDataItem *> &, QgsDataItemGuiContext )
42 {
43 
44 }
45 
47 {
48  return 0;
49 }
50 
52 {
53  return false;
54 }
55 
57 {
58  return false;
59 }
60 
62 {
63  return false;
64 }
65 
67 {
68  return false;
69 }
70 
71 bool QgsDataItemGuiProvider::handleDrop( QgsDataItem *, QgsDataItemGuiContext, const QMimeData *, Qt::DropAction )
72 {
73  return false;
74 }
75 
77 {
78  return nullptr;
79 }
80 
81 void QgsDataItemGuiProvider::notify( const QString &title, const QString &message, QgsDataItemGuiContext context, Qgis::MessageLevel level, int duration, QWidget *parent )
82 {
83  if ( QgsMessageBar *bar = context.messageBar() )
84  {
85  bar->pushMessage( title, message, level, duration );
86  }
87  else
88  {
89  switch ( level )
90  {
91  case Qgis::MessageLevel::Info:
92  case Qgis::MessageLevel::NoLevel:
93  {
94  QMessageBox::information( parent, title, message );
95  break;
96  }
97  case Qgis::MessageLevel::Warning:
98  {
99  QMessageBox::warning( parent, title, message );
100  break;
101  }
102  case Qgis::MessageLevel::Critical:
103  {
104  QMessageBox::critical( parent, title, message );
105  break;
106  }
107  case Qgis::MessageLevel::Success:
108  {
109  // There is no "success" in message box, let's use information instead
110  QMessageBox::information( parent, title, message );
111  break;
112  }
113  }
114  }
115 }
MessageLevel
Level for messages This will be used both for message log and message bar in application.
Definition: qgis.h:107
Encapsulates the context in which a QgsDataItem is shown within the application GUI.
QgsMessageBar * messageBar() const
Returns the associated message bar.
void setMessageBar(QgsMessageBar *bar)
Sets the associated message bar.
virtual void populateContextMenu(QgsDataItem *item, QMenu *menu, const QList< QgsDataItem * > &selectedItems, QgsDataItemGuiContext context)
Called when the given context menu is being populated for the given item, allowing the provider to ad...
virtual bool handleDrop(QgsDataItem *item, QgsDataItemGuiContext context, const QMimeData *data, Qt::DropAction action)
Called when a user drops on an item.
static void notify(const QString &title, const QString &message, QgsDataItemGuiContext context, Qgis::MessageLevel level=Qgis::MessageLevel::Info, int duration=-1, QWidget *parent=nullptr)
Notify the user showing a message with title and level If the context has a message bar the message w...
virtual int precedenceWhenPopulatingMenus() const
Returns the provider's precedence to use when populating context menus via calls to populateContextMe...
virtual bool acceptDrop(QgsDataItem *item, QgsDataItemGuiContext context)
Providers should return true if the drops are allowed (handleDrop() should be implemented in that cas...
virtual bool handleDoubleClick(QgsDataItem *item, QgsDataItemGuiContext context)
Called when a user double clicks on an item.
virtual QWidget * createParamWidget(QgsDataItem *item, QgsDataItemGuiContext context)
Creates source widget from data item for QgsBrowserPropertiesWidget By default it returns nullptr.
virtual bool rename(QgsDataItem *item, const QString &name, QgsDataItemGuiContext context)
Sets a new name for the item, and returns true if the item was successfully renamed.
virtual bool deleteLayer(QgsLayerItem *item, QgsDataItemGuiContext context)
Tries to permanently delete map layer representing the given item.
Base class for all items in the model.
Definition: qgsdataitem.h:46
Item that represents a layer that can be opened with one of the providers.
Definition: qgslayeritem.h:30
A bar for displaying non-blocking messages to the user.
Definition: qgsmessagebar.h:61