SVN revision: 59053devs/princeamd/enlightenment-0.17-elive
parent
ed7aba1cfd
commit
c2b3532fd7
18 changed files with 16 additions and 177 deletions
@ -1,7 +0,0 @@ |
||||
.deps |
||||
.libs |
||||
Makefile |
||||
Makefile.in |
||||
*.lo |
||||
module.la |
||||
module.desktop |
@ -1,31 +0,0 @@ |
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
MODULE = conf_winlist
|
||||
|
||||
# data files for the module
|
||||
filesdir = $(libdir)/enlightenment/modules/$(MODULE)
|
||||
files_DATA = \
|
||||
e-module-$(MODULE).edj module.desktop |
||||
|
||||
EXTRA_DIST = $(files_DATA)
|
||||
|
||||
# the module .so file
|
||||
INCLUDES = -I. \
|
||||
-I$(top_srcdir) \
|
||||
-I$(top_srcdir)/src/modules/$(MODULE) \
|
||||
-I$(top_srcdir)/src/bin \
|
||||
-I$(top_builddir)/src/bin \
|
||||
-I$(top_srcdir)/src/modules \
|
||||
@e_cflags@
|
||||
pkgdir = $(libdir)/enlightenment/modules/$(MODULE)/$(MODULE_ARCH)
|
||||
pkg_LTLIBRARIES = module.la
|
||||
module_la_SOURCES = e_mod_main.c \
|
||||
e_mod_main.h \
|
||||
e_int_config_winlist.c \
|
||||
e_int_config_winlist.h
|
||||
|
||||
module_la_LIBADD = @e_libs@ @dlopen_libs@
|
||||
module_la_LDFLAGS = -module -avoid-version
|
||||
module_la_DEPENDENCIES = $(top_builddir)/config.h
|
||||
|
||||
uninstall: |
||||
rm -rf $(DESTDIR)$(libdir)/enlightenment/modules/$(MODULE)
|
Binary file not shown.
@ -1,44 +0,0 @@ |
||||
#include "e.h" |
||||
#include "e_mod_main.h" |
||||
|
||||
/* actual module specifics */ |
||||
static E_Module *conf_module = NULL; |
||||
|
||||
/* module setup */ |
||||
EAPI E_Module_Api e_modapi = |
||||
{ |
||||
E_MODULE_API_VERSION, |
||||
"Settings - Window List" |
||||
}; |
||||
|
||||
EAPI void * |
||||
e_modapi_init(E_Module *m) |
||||
{ |
||||
e_configure_registry_category_add("windows", 50, _("Windows"), NULL,
|
||||
"preferences-system-windows"); |
||||
e_configure_registry_item_add("windows/window_list", 30, _("Window List"),
|
||||
NULL, "preferences-winlist",
|
||||
e_int_config_winlist); |
||||
conf_module = m; |
||||
e_module_delayed_set(m, 1); |
||||
return m; |
||||
} |
||||
|
||||
EAPI int |
||||
e_modapi_shutdown(E_Module *m __UNUSED__) |
||||
{ |
||||
E_Config_Dialog *cfd; |
||||
|
||||
while ((cfd = e_config_dialog_get("E", "advanced/window_list")))
|
||||
e_object_del(E_OBJECT(cfd)); |
||||
e_configure_registry_item_del("advanced/window_list"); |
||||
e_configure_registry_category_del("advanced"); |
||||
conf_module = NULL; |
||||
return 1; |
||||
} |
||||
|
||||
EAPI int |
||||
e_modapi_save(E_Module *m __UNUSED__) |
||||
{ |
||||
return 1; |
||||
} |
@ -1,16 +0,0 @@ |
||||
#ifndef E_MOD_MAIN_H |
||||
#define E_MOD_MAIN_H |
||||
|
||||
#define E_TYPEDEFS 1 |
||||
#include "e_int_config_winlist.h" |
||||
|
||||
#undef E_TYPEDEFS |
||||
#include "e_int_config_winlist.h" |
||||
|
||||
EAPI extern E_Module_Api e_modapi; |
||||
|
||||
EAPI void *e_modapi_init (E_Module *m); |
||||
EAPI int e_modapi_shutdown (E_Module *m); |
||||
EAPI int e_modapi_save (E_Module *m); |
||||
|
||||
#endif |
@ -1,34 +0,0 @@ |
||||
[Desktop Entry] |
||||
Type=Link |
||||
Name=Window List |
||||
Name[ru]=Список окон |
||||
Name[cs]=Seznam oken |
||||
Name[de]= |
||||
Name[eo]=Fenestrolisto |
||||
Name[es]=Lista de ventanas |
||||
Name[fr]=Liste des fenêtres |
||||
Name[hu]=Ablak lista |
||||
Name[it]=Lista finestre |
||||
Name[ja]= |
||||
Name[pt]=Lista de janelas |
||||
Name[pt_BR]= |
||||
Name[tr]=Pencere Listesi |
||||
Name[zh_CN]= |
||||
Name[zh_TW]= |
||||
Icon=e-module-conf_winlist |
||||
Comment=Configure your window list properties. |
||||
Comment[ru]=Позволяет конфигурацию списка окон. |
||||
Comment[cs]=Změna vlastností seznamu oken. |
||||
Comment[de]= |
||||
Comment[eo]=Agordi la ecojn de la fenestrolisto. |
||||
Comment[es]=Configura las propiedades de su lista de ventanas. |
||||
Comment[fr]=Configure les propriétés de la liste des fenêtres. |
||||
Comment[hu]=Az ablak lista beállításait teszi lehetõvé ez a modul. |
||||
Comment[it]=Configura le proprietà della lista delle finestre. |
||||
Comment[ja]= |
||||
Comment[pt]=Permite-lhe configurar as propriedades da lista de janelas |
||||
Comment[pt_BR]= |
||||
Comment[tr]=Pencere listesi özelliklerini yapılandırır. |
||||
Comment[zh_CN]= |
||||
Comment[zh_TW]= |
||||
X-Enlightenment-ModuleType=settings |
Loading…
Reference in new issue