Bezig met plugin menu systeem
This commit is contained in:
parent
601d071d0f
commit
048843a1d4
10 changed files with 93 additions and 16 deletions
6
pglab/plugin_support/LMenu.cpp
Normal file
6
pglab/plugin_support/LMenu.cpp
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
#include "LMenu.h"
|
||||
|
||||
LMenu::LMenu()
|
||||
{
|
||||
|
||||
}
|
||||
13
pglab/plugin_support/LMenu.h
Normal file
13
pglab/plugin_support/LMenu.h
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
#ifndef LMENU_H
|
||||
#define LMENU_H
|
||||
|
||||
/** Represents a menu wraps QMenu to give it more dynamic functionality
|
||||
*
|
||||
*/
|
||||
class LMenu
|
||||
{
|
||||
public:
|
||||
LMenu();
|
||||
};
|
||||
|
||||
#endif // LMENU_H
|
||||
6
pglab/plugin_support/LMenuBar.cpp
Normal file
6
pglab/plugin_support/LMenuBar.cpp
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
#include "LMenuBar.h"
|
||||
|
||||
LMenuBar::LMenuBar()
|
||||
{
|
||||
|
||||
}
|
||||
11
pglab/plugin_support/LMenuBar.h
Normal file
11
pglab/plugin_support/LMenuBar.h
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
#ifndef LMENUBAR_H
|
||||
#define LMENUBAR_H
|
||||
|
||||
/** Represents the main menubar. Linked to a QMenuBar
|
||||
*/
|
||||
class LMenuBar {
|
||||
public:
|
||||
LMenuBar();
|
||||
};
|
||||
|
||||
#endif // LMENUBAR_H
|
||||
6
pglab/plugin_support/LMenuItem.cpp
Normal file
6
pglab/plugin_support/LMenuItem.cpp
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
#include "LMenuItem.h"
|
||||
|
||||
LMenuItem::LMenuItem()
|
||||
{
|
||||
|
||||
}
|
||||
10
pglab/plugin_support/LMenuItem.h
Normal file
10
pglab/plugin_support/LMenuItem.h
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
#ifndef LMENUITEM_H
|
||||
#define LMENUITEM_H
|
||||
|
||||
|
||||
class LMenuItem {
|
||||
public:
|
||||
LMenuItem();
|
||||
};
|
||||
|
||||
#endif // LMENUITEM_H
|
||||
6
pglab/plugin_support/LMenuSection.cpp
Normal file
6
pglab/plugin_support/LMenuSection.cpp
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
#include "LMenuSection.h"
|
||||
|
||||
LMenuSection::LMenuSection()
|
||||
{
|
||||
|
||||
}
|
||||
11
pglab/plugin_support/LMenuSection.h
Normal file
11
pglab/plugin_support/LMenuSection.h
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
#ifndef LMENUSECTION_H
|
||||
#define LMENUSECTION_H
|
||||
|
||||
/** Logical grouping within a menu
|
||||
*/
|
||||
class LMenuSection {
|
||||
public:
|
||||
LMenuSection();
|
||||
};
|
||||
|
||||
#endif // LMENUSECTION_H
|
||||
Loading…
Add table
Add a link
Reference in a new issue