forked from KolibriOS/kolibrios
d04f47d335
git-svn-id: svn://kolibrios.org@6782 a494cfbc-eb01-0410-851d-a64ba20cac60
249 lines
7.1 KiB
C
249 lines
7.1 KiB
C
//11.03.12 - start!
|
||
//ver 2.0
|
||
|
||
#ifndef AUTOBUILD
|
||
?include "lang.h--"
|
||
#endif
|
||
|
||
#define MEMSIZE 0xFE800
|
||
#include "..\lib\mem.h"
|
||
#include "..\lib\strings.h"
|
||
#include "..\lib\io.h"
|
||
#include "..\lib\list_box.h"
|
||
#include "..\lib\menu.h"
|
||
#include "..\lib\gui.h"
|
||
#include "..\lib\obj\box_lib.h"
|
||
#include "..\lib\patterns\select_list.h"
|
||
|
||
|
||
//===================================================//
|
||
// //
|
||
// DATA //
|
||
// //
|
||
//===================================================//
|
||
|
||
#ifdef LANG_RUS
|
||
?define WINDOW_HEADER "<EFBFBD> áâனª¨ ®ä®à¬«¥¨ï"
|
||
?define T_SKINS "‘â¨«ì ®ª®"
|
||
?define T_WALLPAPERS "Ž¡®¨"
|
||
#else
|
||
?define WINDOW_HEADER "Appearance"
|
||
?define T_SKINS "Skins"
|
||
?define T_WALLPAPERS "Wallpappers"
|
||
#endif
|
||
|
||
#define PANEL_H 40
|
||
#define LIST_PADDING 20
|
||
#define SKINS_STANDART_PATH "/kolibrios/res/skins"
|
||
#define WALP_STANDART_PATH "/kolibrios/res/wallpapers"
|
||
|
||
signed int active_skin=-1, active_wallpaper=-1;
|
||
enum { SKINS=2, WALLPAPERS };
|
||
|
||
char folder_path[4096];
|
||
char cur_file_path[4096];
|
||
char temp_filename[4096];
|
||
int files_mas[400];
|
||
|
||
int cur;
|
||
|
||
proc_info Form;
|
||
|
||
//===================================================//
|
||
// //
|
||
// CODE //
|
||
// //
|
||
//===================================================//
|
||
|
||
void main()
|
||
{
|
||
int id, mouse_clicked;
|
||
|
||
SetEventMask(0x27);
|
||
load_dll(boxlib, #box_lib_init,0);
|
||
EventTabClick(SKINS);
|
||
loop() switch(WaitEvent())
|
||
{
|
||
case evMouse:
|
||
if (!CheckActiveProcess(Form.ID)) break;
|
||
SelectList_ProcessMouse();
|
||
|
||
if (mouse.down)&&(mouse.pkm) {
|
||
select_list.ProcessMouse(mouse.x, mouse.y);
|
||
SelectList_Draw();
|
||
menu.show(Form.left+mouse.x, Form.top+mouse.y+skin_height, 185, "Open file Enter\nDelete Del", 10);
|
||
}
|
||
break;
|
||
|
||
case evButton:
|
||
id=GetButtonID();
|
||
if (id==1) ExitProcess();
|
||
if (id==SKINS) EventTabClick(SKINS);
|
||
if (id==WALLPAPERS) EventTabClick(WALLPAPERS);
|
||
break;
|
||
|
||
case evKey:
|
||
GetKeys();
|
||
if (select_list.ProcessKey(key_scancode)) EventApply();
|
||
if (key_scancode==SCAN_CODE_ENTER) EventOpenFile();
|
||
if (key_scancode==SCAN_CODE_TAB) if (tabs.active_tab==SKINS) EventTabClick(WALLPAPERS); else EventTabClick(SKINS);
|
||
if (key_scancode==SCAN_CODE_DEL) EventDeleteFile();
|
||
for (id=select_list.cur_y+1; id<select_list.count; id++)
|
||
{
|
||
strcpy(#temp_filename, io.dir.position(files_mas[id]));
|
||
if (temp_filename[0]==key_ascii) || (temp_filename[0]==key_ascii-32)
|
||
{
|
||
select_list.cur_y = id - 1;
|
||
select_list.KeyDown();
|
||
EventApply();
|
||
break;
|
||
}
|
||
}
|
||
break;
|
||
|
||
case evReDraw:
|
||
system.color.get();
|
||
DefineAndDrawWindow(screen.width-400/2,80,400,404+skin_height,0x73,0xE4DFE1,WINDOW_HEADER,0);
|
||
GetProcessInfo(#Form, SelfInfo);
|
||
IF (Form.status_window>=2) break;
|
||
DrawWindowContent();
|
||
if (menu.list.cur_y) {
|
||
if (menu.list.cur_y == 10) EventOpenFile();
|
||
if (menu.list.cur_y == 11) EventDeleteFile();
|
||
menu.list.cur_y = 0;
|
||
};
|
||
}
|
||
}
|
||
|
||
void DrawWindowContent()
|
||
{
|
||
int id;
|
||
id = select_list.cur_y;
|
||
SelectList_Init(
|
||
LIST_PADDING,
|
||
PANEL_H,
|
||
Form.cwidth-scroll1.size_x-LIST_PADDING-LIST_PADDING,
|
||
Form.cheight-PANEL_H-LIST_PADDING,
|
||
false
|
||
);
|
||
select_list.cur_y = id;
|
||
DrawBar(0,0, Form.cwidth, PANEL_H-LIST_PADDING, system.color.work);
|
||
DrawWideRectangle(select_list.x-LIST_PADDING, select_list.y-LIST_PADDING, LIST_PADDING*2+select_list.w+scroll1.size_x,
|
||
LIST_PADDING*2+select_list.h, LIST_PADDING-2, system.color.work);
|
||
tabs.draw(select_list.x+10, select_list.y, SKINS, T_SKINS);
|
||
if (dir_exists(WALP_STANDART_PATH)) tabs.draw(strlen(T_SKINS)*8+TAB_PADDING+select_list.x+21, select_list.y,
|
||
WALLPAPERS, T_WALLPAPERS);
|
||
SelectList_Draw();
|
||
SelectList_DrawBorder();
|
||
}
|
||
|
||
|
||
|
||
void Open_Dir()
|
||
{
|
||
int j;
|
||
select_list.count = 0;
|
||
if(io.dir.buffer)free(io.dir.buffer);
|
||
io.dir.load(#folder_path,DIR_ONLYREAL);
|
||
for (j=0; j<io.dir.count; j++)
|
||
{
|
||
strcpy(#temp_filename, io.dir.position(j));
|
||
strlwr(#temp_filename);
|
||
if (tabs.active_tab==SKINS) if (strcmpi(#temp_filename+strlen(#temp_filename)-4,".skn")!=0) continue;
|
||
if (tabs.active_tab==WALLPAPERS) if (strcmpi(#temp_filename+strlen(#temp_filename)-4,".txt")==0) continue;
|
||
cur = select_list.count;
|
||
files_mas[cur]=j;
|
||
if (!strcmpi("default.skn",#temp_filename)) files_mas[0]><files_mas[select_list.count];
|
||
select_list.count++;
|
||
}
|
||
}
|
||
|
||
void SelectList_DrawLine(dword i)
|
||
{
|
||
int yyy, list_last;
|
||
|
||
cur = select_list.first + i;
|
||
strcpy(#temp_filename, io.dir.position(files_mas[cur]));
|
||
temp_filename[strlen(#temp_filename)-4] = 0;
|
||
yyy = i*select_list.item_h+select_list.y;
|
||
|
||
if (select_list.cur_y-select_list.first==i)
|
||
{
|
||
DrawBar(select_list.x, yyy, select_list.w, select_list.item_h, system.color.work_button);
|
||
WriteText(select_list.x+12,yyy+select_list.text_y,select_list.font_type,system.color.work_button_text, #temp_filename);
|
||
}
|
||
else
|
||
{
|
||
DrawBar(select_list.x,yyy,select_list.w, select_list.item_h, 0xFFFfff);
|
||
WriteText(select_list.x+12,yyy+select_list.text_y,select_list.font_type,0, #temp_filename);
|
||
}
|
||
}
|
||
|
||
void SelectList_LineChanged()
|
||
{
|
||
EventApply();
|
||
}
|
||
|
||
//===================================================//
|
||
// //
|
||
// EVENTS //
|
||
// //
|
||
//===================================================//
|
||
|
||
void EventTabClick(int N)
|
||
{
|
||
tabs.click(N);
|
||
if (tabs.active_tab == SKINS)
|
||
{
|
||
active_wallpaper = select_list.cur_y;
|
||
strcpy(#folder_path, SKINS_STANDART_PATH);
|
||
select_list.ClearList();
|
||
Open_Dir();
|
||
if (!select_list.count) notify("'No skins were found' -E");
|
||
select_list.cur_y = active_skin;
|
||
}
|
||
if (tabs.active_tab == WALLPAPERS)
|
||
{
|
||
active_skin = select_list.cur_y;
|
||
strcpy(#folder_path, WALP_STANDART_PATH);
|
||
select_list.ClearList();
|
||
Open_Dir();
|
||
if (!select_list.count) notify("'No wallpapers were found' -E");
|
||
select_list.cur_y = active_wallpaper;
|
||
}
|
||
if (select_list.cur_y>select_list.visible) select_list.first=select_list.cur_y; select_list.CheckDoesValuesOkey();
|
||
if (select_list.w) DrawWindowContent();
|
||
}
|
||
|
||
void EventDeleteFile()
|
||
{
|
||
io.del(#cur_file_path);
|
||
Open_Dir();
|
||
EventApply();
|
||
}
|
||
|
||
void EventApply()
|
||
{
|
||
if (tabs.active_tab==SKINS)
|
||
{
|
||
cur = select_list.cur_y;
|
||
sprintf(#cur_file_path,"%s/%s",#folder_path,io.dir.position(files_mas[cur]));
|
||
SetSystemSkin(#cur_file_path);
|
||
}
|
||
if (tabs.active_tab==WALLPAPERS)
|
||
{
|
||
cur = select_list.cur_y;
|
||
sprintf(#cur_file_path,"\\S__%s/%s",#folder_path,io.dir.position(files_mas[cur]));
|
||
RunProgram("/sys/media/kiv", #cur_file_path);
|
||
SelectList_Draw();
|
||
}
|
||
}
|
||
|
||
void EventOpenFile()
|
||
{
|
||
if (tabs.active_tab==SKINS) RunProgram("/sys/skincfg", #cur_file_path);
|
||
if (tabs.active_tab==WALLPAPERS) RunProgram("/sys/media/kiv", #cur_file_path);
|
||
}
|
||
|
||
stop:
|