blob: 419f9d99e2f609f814a2b9fabdf98f823f668f33 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
/***************************************************************************
* *
* 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. *
* *
* copyright (C) 2004-2006 *
* Umbrello UML Modeller Authors <uml-devel@uml.sf.net> *
***************************************************************************/
#ifndef WIDGET_UTILS_H
#define WIDGET_UTILS_H
#include <qiconset.h>
#include <qpoint.h>
#include "umlnamespace.h"
#include "umlwidgetlist.h"
#include "messagewidgetlist.h"
// forward declarations
class QCanvasRectangle;
/**
* General purpose widget utilities.
* Bugs and comments to uml-devel@lists.sf.net or http://bugs.kde.org
*/
namespace Widget_Utils {
/**
* Find the widget identified by the given ID in the given widget
* or message list.
*
* @param id The unique ID to find.
* @param widgets The UMLWidgetList to search in.
* @param pMessages Optional pointer to a MessageWidgetList to
* search in.
*/
UMLWidget* findWidget(Uml::IDType id,
const UMLWidgetList& widgets,
const MessageWidgetList* pMessages = NULL);
/**
* Return the icon corresponding to the given Diagram_Type.
*/
QIconSet iconSet(Uml::Diagram_Type dt);
QCanvasRectangle *decoratePoint(const QPoint& p);
}
#endif
|