add dummy taskbar
This commit is contained in:
parent
3e0c386d97
commit
359948176d
4 changed files with 16 additions and 0 deletions
|
|
@ -15,6 +15,7 @@ endif()
|
|||
add_subdirectory(separator)
|
||||
add_subdirectory(startbutton)
|
||||
add_subdirectory(time)
|
||||
add_subdirectory(taskbar)
|
||||
|
||||
include(GNUInstallDirs)
|
||||
configure_file(mpanelrc.in mpanelrc)
|
||||
|
|
|
|||
|
|
@ -5,6 +5,9 @@ Modules: (
|
|||
{
|
||||
Type = "Separator";
|
||||
},
|
||||
{
|
||||
Type = "TaskBar";
|
||||
},
|
||||
{
|
||||
Type = "Separator";
|
||||
},
|
||||
|
|
|
|||
6
mpanel/taskbar/CMakeLists.txt
Normal file
6
mpanel/taskbar/CMakeLists.txt
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
include(MDEBase)
|
||||
include(MDEPkgConfig)
|
||||
mde_setup_library(TaskBarModule ${CMAKE_INSTALL_LIBDIR}/mpanel)
|
||||
|
||||
mde_pkg_config_add(TaskBarModule libconfig)
|
||||
|
||||
6
mpanel/taskbar/module.c
Normal file
6
mpanel/taskbar/module.c
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
#include <Mw/Milsko.h>
|
||||
#include <libconfig.h>
|
||||
|
||||
void module(MwWidget box, config_setting_t* setting) {
|
||||
MwWidget b = MwCreateWidget(MwFrameClass, "taskbar", box, 0, 0, 0, 0);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue