Menu => md namespace.
This commit is contained in:
parent
792f3cfa24
commit
d11d642cfe
|
@ -1,11 +1,17 @@
|
||||||
#include "qtmaterialmenu.h"
|
#include "qtmaterialmenu.h"
|
||||||
#include "qtmaterialmenu_p.h"
|
#include "qtmaterialmenu_p.h"
|
||||||
|
|
||||||
QtMaterialMenu::QtMaterialMenu(QWidget *parent)
|
namespace md
|
||||||
|
{
|
||||||
|
|
||||||
|
Menu::Menu(QWidget *parent)
|
||||||
: QWidget(parent)
|
: QWidget(parent)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
QtMaterialMenu::~QtMaterialMenu()
|
Menu::~Menu()
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
|
@ -3,13 +3,16 @@
|
||||||
|
|
||||||
#include <QtWidgets/QWidget>
|
#include <QtWidgets/QWidget>
|
||||||
|
|
||||||
class QtMaterialMenu : public QWidget
|
namespace md
|
||||||
|
{
|
||||||
|
class Menu : public QWidget
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
public:
|
public:
|
||||||
explicit QtMaterialMenu(QWidget *parent = 0);
|
explicit Menu(QWidget *parent = 0);
|
||||||
~QtMaterialMenu();
|
~Menu();
|
||||||
};
|
};
|
||||||
|
}
|
||||||
|
|
||||||
#endif // QTMATERIALMENU_H
|
#endif // QTMATERIALMENU_H
|
||||||
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
|
||||||
|
|
||||||
|
namespace md
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
|
@ -1,4 +1,7 @@
|
||||||
#ifndef QTMATERIALMENU_INTERNAL_H
|
#ifndef QTMATERIALMENU_INTERNAL_H
|
||||||
#define QTMATERIALMENU_INTERNAL_H
|
#define QTMATERIALMENU_INTERNAL_H
|
||||||
|
namespace md
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
#endif // QTMATERIALMENU_INTERNAL_H
|
#endif // QTMATERIALMENU_INTERNAL_H
|
||||||
|
|
|
@ -1,4 +1,7 @@
|
||||||
#ifndef QTMATERIALMENU_P_H
|
#ifndef QTMATERIALMENU_P_H
|
||||||
#define QTMATERIALMENU_P_H
|
#define QTMATERIALMENU_P_H
|
||||||
|
namespace md
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
#endif // QTMATERIALMENU_P_H
|
#endif // QTMATERIALMENU_P_H
|
||||||
|
|
Loading…
Reference in New Issue