-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathosgScutcheon.h
424 lines (352 loc) · 11.5 KB
/
osgScutcheon.h
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
/**
* @brief 标牌
* @author hph
* @date 2018/07/07
*/
#ifndef OSGSCUTCHEON_H
#define OSGSCUTCHEON_H
//#include "Windows.h"
//#include <WinNls.h>
#include <QObject>
#include <iostream>
#include <sstream>
#include <QDebug>
#include <QTextCodec>
#include "qCommonFunction.h"
#include <QVector>
#include <QThread>
#include "3DEngine/graphicsview.h"
#define FONT_TEXT "fonts/simhei.ttf"
#define TITLE_IMAGE "../publish/data/texture/mark/label_title.png"
#define ITEM_IAMGE "../publish/data/texture/mark/label_normal_01.png"
//标牌二级菜单
class ImageLabel;
//标牌一级菜单
class osgScutcheonMenu;
/**标牌
* @brief The osgScutcheon class
*/
class osgScutcheon : public osgWidget::Box
{
public:
osgScutcheon();
///
/// \brief osgScutcheon构造函数
/// \param titleText 标牌的标题文字
/// \param targetObj 标牌绑定的节点
///
osgScutcheon(const QString& titleText, osg::ref_ptr<osg::MatrixTransform> targetObj);
~osgScutcheon();
public:
void addLabelTitle(const QString &titleText);
void addLabelItem(const QString &labelText);
void addLabelItem(osgScutcheonMenu &labelItem);
void hideOtherLabelItem();
void moveLabelItem();
void createLine(const osg::Vec3& startPt = osg::Vec3(0,0,0), const osg::Vec3& endPt = osg::Vec3(0,0,0) );
void onMouseEvent(const osgGA::GUIEventAdapter& ea, osgViewer::Viewer *viewer);
osg::Geometry* getLine() const { return m_line; }
int getItemCount();
void setVisibility(bool b);
bool getVisibility() {return mIsVisible;}
void setPos(osg::Vec3 pos);
void setOffset(osg::Vec3 offset);
//用于模型更新标牌回调函数中使用
osg::ref_ptr<osg::MatrixTransform> getTargetObject();
std::vector<osg::ref_ptr<osgScutcheonMenu> > getLabelItemManager() const;
private:
bool callbackMouseDrag(osgWidget::Event& ev);
protected:
bool mouseDrag(double, double, const osgWidget::WindowManager*);
bool mousePush(double, double, const osgWidget::WindowManager*);
bool mouseRelease(double, double, const osgWidget::WindowManager*);
public:
QString mTitleText;
std::vector<osg::ref_ptr<osgScutcheonMenu> > mLabelItemManager;
int mIndex;
osg::ref_ptr<osg::MatrixTransform> mTargetObj;
osg::ref_ptr<osg::Geometry> m_line;
bool mIsVisible;
bool mIsItemVisible;
bool mIsMousePush;
bool mIsMouseDrag;
osg::Vec3 m_pos;
osg::Vec3 m_offset;
osg::Vec3 m_LastPt;
osg::Vec3 m_LBDownPt;
};
/**
标牌管理器,全局唯一,一个标牌管理器包含多个标牌
* @brief The osgScutcheonManager class
*/
class osgScutcheonManager : public osgGA::GUIEventHandler
{
protected:
osgScutcheonManager(osgViewer::Viewer* pViewer, osg::Group* pScreneRoot);
~osgScutcheonManager();
public:
static osgScutcheonManager *instance();
static void destroy();
bool handle(const osgGA::GUIEventAdapter&,osgGA::GUIActionAdapter&);
int addLabel(osgScutcheon* label);
int delLabel(osgScutcheon*& label);
int delLabel(osg::MatrixTransform* tethernode);
void clear();
void lock(bool b);
void setVisibility(bool b);
void setVisibilityByID(unsigned int ID,bool b);
bool getVisibilityByID(unsigned int ID);
bool getVisibility() const { return m_bVisible; }
void setLabelTxtColor(const osg::Vec4f& color);
void setLabelBgColor(const osg::Vec4f& color);
const osg::Vec4f& getLabelTxtColor() const { return m_clrTxt; }
const osg::Vec4f& getLabelBgColor() const { return m_clrBg; }
osg::ref_ptr<osgWidget::WindowManager> getWindowManager() const;
public:
static osgScutcheonManager *m_pInstance;
osg::ref_ptr<osgWidget::WindowManager> mWindowManager;
//osgWidget::WindowManager* mWindowManager;
std::vector<osgScutcheon*> m_LabelList;
bool m_bStopGUI;
bool m_bGUIStoped;
bool m_bVisible;
osg::Vec4f m_clrTxt;
osg::Vec4f m_clrBg;
};
//标牌一级菜单
class osgScutcheonMenu: public osgWidget::Label
{
public:
osgScutcheonMenu(const QString &label, osg::ref_ptr<osgScutcheon> parentMenu):
osgWidget::Label("menu1"),
mChildMenu(NULL),
mParentMenu(parentMenu),
mHasChildMenu(false),
mIndex(0),
mMenuItemCount(0)
{
initLabel(label);//初始化一级菜单
}
//添加二级菜单
void addChildMenu(QString &menuText)
{
ImageLabel *childMenuContent = new ImageLabel(menuText);
if(mChildMenu == NULL)
{
mChildMenu = new osgWidget::Box("childMenu", osgWidget::Box::VERTICAL,true);
mChildMenu->addWidget(childMenuContent);
mMenuItemManager.push_back(childMenuContent);
mChildMenu->getBackground()->setColor(1.0f, 1.0f, 1.0f, 0.6f);
mChildMenu->resize();
mChildMenu->hide();
mHasChildMenu = true;
//此句不能加,不然多一个视口显示mChildMenu,因为mParent是显示的
//mParentMenu->addChild(mChildMenu);
mParentMenu->getWindowManager()->addChild(mChildMenu.get());
}
else
{
mChildMenu->addWidget(childMenuContent);
mMenuItemManager.push_back(childMenuContent);
}
++mMenuItemCount;
}
//更新二级菜单文字
void updateChildMenuText(int index, QString labelText)
{
if(index >= 0 && index < getMenuItemCount())
{
mMenuItemManager.at(index)->setLabelText(labelText);
}
}
//初始化一级菜单
void initLabel(const QString &labelText)
{
setFont(FONT_TEXT);
setFontSize(15);
setFontColor(0.0f, 0.0f, 1.0f, 1.0f);
addSize(128.0f, 32.0f);
setColor(1.0f, 1.0f, 0.0f, 0.6f);
//setShadow(0.08f);
setCanFill(true);
setEventMask(osgWidget::EVENT_ALL);
setImage(ITEM_IAMGE);
setTexCoord(0.0f, 0.0f, osgWidget::Widget::LOWER_LEFT);
setTexCoord(1.0f, 0.0f, osgWidget::Widget::LOWER_RIGHT);
setTexCoord(1.0f, 1.0f, osgWidget::Widget::UPPER_RIGHT);
setTexCoord(0.0f, 1.0f, osgWidget::Widget::UPPER_LEFT);
//设置文本放在最后,不然标牌大小会改变
CommonFunction com;
osgText::String labelString = com.qstringToOsgTextString(labelText);
setLabel(labelString);
}
void setIndex(int index)
{
mIndex = index;
}
void moveTo(int parentX, int parentY)
{
if(mChildMenu)
{
mChildMenu->setOrigin(parentX + 128.0, parentY + 32.0 * mIndex);
mChildMenu->update();
}
}
bool isHasChildMenu()
{
return mHasChildMenu;
}
osg::ref_ptr<osgWidget::Window> getChildMenu()
{
return mChildMenu;
}
int getIndex()
{
return mIndex;
}
int getMenuItemCount()
{
return mMenuItemManager.size();
}
//隐藏当前标牌其余二级子菜单
void hideOtherChildMenu()
{
for(int i = 0; i < mParentMenu->getLabelItemManager().size(); i++)
{
osg::ref_ptr<osgScutcheonMenu> childItem = mParentMenu->getLabelItemManager().at(i);
if(childItem->getChildMenu() != mChildMenu)
{
childItem->getChildMenu()->hide();
}
qDebug() << "hideOtherChildMenu";
}
}
//隐藏所有标牌其余二级子菜单
void hideAllChildMenu(osgWidget::WindowManager*wm)
{
osgWidget::Window *tmp = 0;
unsigned int count = wm->getNumChildren();
for(unsigned int i = 0; i < count; ++i)
{
tmp = dynamic_cast<osgWidget::Window*>(wm->getChild(i));
if(tmp)
{
QString name = QString::fromStdString(tmp->getName());
if(tmp != mChildMenu.get() && name == "childMenu")
{
if(tmp->isVisible())
{
tmp->hide();
}
}
}
}
}
void managed(osgWidget::WindowManager* wm)
{
osgWidget::Label::managed(wm);
if(mChildMenu)
{
mChildMenu->hide();
}
}
void positioned()
{
osgWidget::Label::positioned();
if(mChildMenu)
{
//qDebug() << "mChildMenu not NULL!!" << mIndex;
mChildMenu->setOrigin(mParentMenu->getX() + 128.0, mParentMenu->getY() + 32.0 * mIndex );
}
}
bool mousePush(double, double, const osgWidget::WindowManager*wm)
{
hideOtherChildMenu();
//hideAllChildMenu(mParentMenu->getWindowManager());
if(!mChildMenu->isVisible())
{
mChildMenu->show();
qDebug() << "hideOtherChildMenu show";
}
else
{
mChildMenu->hide();
qDebug() << "hideOtherChildMenu hide";
}
return true;
}
bool mouseEnter(double, double, const osgWidget::WindowManager*)
{
setColor(1.0f, 1.0f, 1.0f, 0.3f);
return true;
}
bool mouseLeave(double, double, const osgWidget::WindowManager*)
{
setColor(1.0f, 1.0f, 1.0f, 0.6f);
return true;
}
public:
QVector<osg::ref_ptr<ImageLabel> > mMenuItemManager;
private:
osg::ref_ptr<osgWidget::Box> mChildMenu;
osg::ref_ptr<osgScutcheon> mParentMenu;
int mIndex;
int mMenuItemCount;
bool mHasChildMenu;
};
//标牌二级菜单
class ImageLabel: public osgWidget::Label
{
public:
ImageLabel(QString &labelText): osgWidget::Label("menu1")
{
setFont(FONT_TEXT);
setFontSize(13);
setFontColor(0.0f, 0.2f, 1.0f, 1.0f);
addSize(128.0f, 32.0f);
setColor(1.0f, 1.0f, 1.0f, 0.6f);
//setPadding(1.0f);
//setShadow(0.08f);
setCanFill(true);
setEventMask(osgWidget::EVENT_ALL);
setImage(ITEM_IAMGE);
setLabelText(labelText);
}
void setLabelText(QString labelText)
{
setAlignHorizontal(osgWidget::Widget::HA_LEFT);
setTexCoord(0.0f, 0.0f, osgWidget::Widget::LOWER_LEFT);
setTexCoord(1.0f, 0.0f, osgWidget::Widget::LOWER_RIGHT);
setTexCoord(1.0f, 1.0f, osgWidget::Widget::UPPER_RIGHT);
setTexCoord(0.0f, 1.0f, osgWidget::Widget::UPPER_LEFT);
CommonFunction com;
osgText::String labelString = com.qstringToOsgTextString(labelText);
setLabel(labelString);
}
bool mousePush(double, double, const osgWidget::WindowManager*)
{
return true;
}
bool mouseDrag(double, double, const osgWidget::WindowManager*)
{
//osg::notify(osg::NOTICE) << _name << " > mouseDrag called" << std::endl;
return false;
}
bool mouseEnter(double, double, const osgWidget::WindowManager*)
{
//setColor(1.0f, 1.0f, 1.0f, 1.0f);
setFontColor(0.0f, 0.0f, 1.0f, 1.0f);
return true;
}
bool mouseLeave(double, double, const osgWidget::WindowManager*)
{
//setColor(1.0f, 1.0f, 1.0f, 0.8f);
setFontColor(0.0f, 0.2f, 1.0f, 1.0f);
return true;
}
bool mouseOver(double, double, const osgWidget::WindowManager*)
{
return true;
}
};
#endif // OSGSCUTCHEON_H