parent
be172479ac
commit
a0256505e8
@ -0,0 +1,19 @@
|
||||
add_library(model
|
||||
load.cc
|
||||
load.h
|
||||
my_device.cc
|
||||
my_device.h
|
||||
my_process.cc
|
||||
my_process.h
|
||||
save.cc
|
||||
save.h
|
||||
system_quotas.cc
|
||||
system_quotas.h
|
||||
ubconfig_quotas.cc
|
||||
ubconfig_quotas.h
|
||||
util.cc
|
||||
util.h
|
||||
wrapper_load_save.cc
|
||||
wrapper_load_save.h
|
||||
)
|
||||
target_include_directories(model PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
|
@ -1,10 +1,10 @@
|
||||
#ifndef MY_DEVICE_H
|
||||
#define MY_DEVICE_H
|
||||
|
||||
#include "project_lib.h"
|
||||
#include "../project_lib.h"
|
||||
#include "my_process.h"
|
||||
#include "util.h"
|
||||
#include "my_type.h"
|
||||
#include "../my_type.h"
|
||||
|
||||
|
||||
namespace Devices {
|
@ -1,5 +1,4 @@
|
||||
#include "system_quotas.h"
|
||||
#include "my_type.h"
|
||||
|
||||
namespace Quotas_sys {
|
||||
|
@ -1,7 +1,7 @@
|
||||
#ifndef SYSTEM_CMD_QUOTAS
|
||||
#define SYSTEM_CMD_QUOTAS
|
||||
#include "project_lib.h"
|
||||
#include "my_type.h"
|
||||
#include "../project_lib.h"
|
||||
#include "../my_type.h"
|
||||
#include "my_process.h"
|
||||
#include "util.h"
|
||||
|
@ -1,8 +1,8 @@
|
||||
#ifndef UBCONFIG_QUOTAS
|
||||
#define UBCONFIG_QUOTAS
|
||||
|
||||
#include "project_lib.h"
|
||||
#include "my_type.h"
|
||||
#include "../project_lib.h"
|
||||
#include "../my_type.h"
|
||||
#include "my_process.h"
|
||||
#include "util.h"
|
||||
|
@ -1,6 +1,6 @@
|
||||
#ifndef UTIL_H
|
||||
#define UTIL_H
|
||||
#include "project_lib.h"
|
||||
#include "../project_lib.h"
|
||||
|
||||
using namespace std;
|
||||
|
@ -1,7 +1,7 @@
|
||||
#ifndef WRAPPER_LOAD_H
|
||||
#define WRAPPER_LOAD_H
|
||||
#include "my_type.h"
|
||||
#include "project_lib.h"
|
||||
#include "../my_type.h"
|
||||
#include "../project_lib.h"
|
||||
#include "load.h"
|
||||
#include "save.h"
|
||||
#include "my_process.h"
|
@ -0,0 +1,16 @@
|
||||
add_library(view
|
||||
my_plug.cc
|
||||
my_plug.h
|
||||
ubl-settings-diskquota.h
|
||||
ubl-settings-diskquota.cc
|
||||
ubl-util-standard.h
|
||||
view_about.cc
|
||||
view_about.h
|
||||
view_filters.h
|
||||
view_filters.cc
|
||||
view_open_browser.h
|
||||
view_open_browser.cc
|
||||
view_set_user_group.h
|
||||
view_set_user_group.cc
|
||||
)
|
||||
target_include_directories(view PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
|
@ -1,6 +1,7 @@
|
||||
#include "project_lib.h"
|
||||
#include "../project_lib.h"
|
||||
#include "ubl-settings-diskquota.h"
|
||||
|
||||
|
||||
class CmdArgParser : public Glib::OptionGroup {
|
||||
public:
|
||||
CmdArgParser(const std::string& p_name, const std::string& p_description, const std::string& p_help);
|
@ -1,6 +1,6 @@
|
||||
#ifndef VIEW_ABOUT_H
|
||||
#define VIEW_ABOUT_H
|
||||
#include "project_lib.h"
|
||||
#include "../project_lib.h"
|
||||
#define copyright _("Copyright © UBSoft LLC, 2022 - ")
|
||||
#define str_setting_user _("Setting user quotas")
|
||||
#define website _("https://wiki.ublinux.com")
|
@ -1,6 +1,6 @@
|
||||
#ifndef VIEW_FILTERS_H
|
||||
#define VIEW_FILTERS_H
|
||||
#include "project_lib.h"
|
||||
#include "../project_lib.h"
|
||||
|
||||
#define str_name _("Name")
|
||||
#define str_size _("Size")
|
@ -1,6 +1,6 @@
|
||||
#ifndef VIEW_SET_USER_GROUP_H
|
||||
#define VIEW_SET_USER_GROUP_H
|
||||
#include "project_lib.h"
|
||||
#include "../project_lib.h"
|
||||
#define str_device _("Device:")
|
||||
#define str_quota_status _("Quota use status:")
|
||||
#define str_size _("Size")
|
Loading…
Reference in new issue