forked from KolibriOS/kolibrios
CMM: easy icon set in program
git-svn-id: svn://kolibrios.org@7229 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
parent
c925f4b9bb
commit
63e302c544
@ -11,7 +11,6 @@
|
||||
#include "../lib/obj/proc_lib.h"
|
||||
#include "../lib/obj/http.h"
|
||||
#include "../lib/cursor.h"
|
||||
#include "../lib/patterns/libimg_load_skin.h"
|
||||
#include "../lib/patterns/simple_open_dialog.h"
|
||||
#include "../lib/patterns/history.h"
|
||||
#include "../lib/patterns/http_downloader.h"
|
||||
|
@ -24,7 +24,6 @@
|
||||
#include "..\lib\obj\http.h"
|
||||
#include "..\lib\obj\iconv.h"
|
||||
//useful patterns
|
||||
#include "..\lib\patterns\libimg_load_skin.h"
|
||||
#include "..\lib\patterns\history.h"
|
||||
#include "..\lib\patterns\http_downloader.h"
|
||||
|
||||
|
@ -7,8 +7,6 @@
|
||||
#include "../lib/obj/libimg.h"
|
||||
#include "../lib/obj/box_lib.h"
|
||||
|
||||
#include "../lib/patterns/libimg_load_skin.h"
|
||||
|
||||
#ifndef AUTOBUILD
|
||||
#include "lang.h--"
|
||||
#endif
|
||||
|
@ -23,7 +23,6 @@
|
||||
#include "../lib/obj/box_lib.h"
|
||||
|
||||
#include "../lib/patterns/history.h"
|
||||
#include "../lib/patterns/libimg_load_skin.h"
|
||||
|
||||
//images
|
||||
#include "imgs/left_p.txt"
|
||||
|
@ -5,9 +5,10 @@
|
||||
|
||||
|
||||
if exist iconedit (
|
||||
"C:\Program Files (x86)\WinImage\winimage.exe" "C:\Users\Leency\Desktop\kolibri.img" /H /Q /I iconedit
|
||||
cd D:\Kolibri\Infrastructure\QEMU
|
||||
call "D:\Kolibri\Infrastructure\QEMU\qemu-kos-img.bat"
|
||||
"C:\Program Files\WinImage\winimage.exe" "D:\Soft\Kolibri\QEMU\kolibri.img" /H /Q /I iconedit
|
||||
d:
|
||||
cd "D:\Soft\Kolibri\QEMU"
|
||||
call "D:\Soft\Kolibri\QEMU\qemu-kos-img.bat"
|
||||
) else (
|
||||
@pause
|
||||
)
|
||||
|
@ -18,7 +18,6 @@ pipet aside color view
|
||||
#include "../lib/mem.h"
|
||||
#include "../lib/obj/libimg.h"
|
||||
#include "../lib/patterns/rgb.h"
|
||||
#include "../lib/patterns/libimg_load_skin.h"
|
||||
|
||||
#include "colors_mas.h"
|
||||
|
||||
|
@ -18,8 +18,6 @@
|
||||
#include "../lib/obj/libio.h"
|
||||
#endif
|
||||
|
||||
:byte init_imglib_check;
|
||||
|
||||
//library
|
||||
dword libimg = #alibimg;
|
||||
char alibimg[21] = "/sys/lib/libimg.obj\0";
|
||||
@ -30,8 +28,8 @@ dword img_to_rgb2 = #aimg_to_rgb2;
|
||||
dword img_decode = #aimg_decode;
|
||||
dword img_destroy = #aimg_destroy;
|
||||
dword img_draw = #aimg_draw;
|
||||
dword img_create = #aimg_create;
|
||||
dword img_encode = #aimg_encode;
|
||||
dword img_create = #aimg_create;
|
||||
dword img_encode = #aimg_encode;
|
||||
|
||||
//dword img_flip = #aimg_flip;
|
||||
//dword img_rotate = #aimg_rotate;
|
||||
@ -229,5 +227,9 @@ struct _Image
|
||||
}
|
||||
}
|
||||
|
||||
#ifndef INCLUDE_LIBIMG_LOAD_SKIN_H
|
||||
#include "../lib/patterns/libimg_load_skin.h"
|
||||
#endif
|
||||
|
||||
|
||||
#endif
|
@ -20,14 +20,6 @@
|
||||
ESDWORD[struct_pointer+12] = ESDWORD[image_pointer+24];
|
||||
}
|
||||
|
||||
:void Libimg_FillTransparent(dword struct_pointer, w, h, new_transparent_color)
|
||||
{
|
||||
dword i, max_i, image_data;
|
||||
image_data = ESDWORD[struct_pointer + 24];
|
||||
max_i = w * h * 4 + image_data;
|
||||
for (i = image_data; i < max_i; i += 4) if (DSDWORD[i]==0) DSDWORD[i] = new_transparent_color;
|
||||
}
|
||||
|
||||
:void Libimg_ReplaceColor(dword struct_pointer, w, h, old_color, new_color)
|
||||
{
|
||||
dword i, max_i, image_data;
|
||||
@ -36,4 +28,19 @@
|
||||
for (i = image_data; i < max_i; i += 4) if (DSDWORD[i]==old_color) DSDWORD[i] = new_color;
|
||||
}
|
||||
|
||||
:void Libimg_FillTransparent(dword struct_pointer, w, h, new_color)
|
||||
{
|
||||
Libimg_ReplaceColor(struct_pointer, w, h, 0, new_color);
|
||||
}
|
||||
|
||||
:libimg_image icons32draw;
|
||||
:void DrawIcon32(dword x,y, bg, icon_n) {
|
||||
//load_dll(libimg, #libimg_init,1);
|
||||
if (!icons32draw.image) {
|
||||
Libimg_LoadImage(#icons32draw, "/sys/icons32.png");
|
||||
Libimg_FillTransparent(icons32draw.image, icons32draw.w, icons32draw.h, bg);
|
||||
}
|
||||
if (icon_n>=0) img_draw stdcall(icons32draw.image, x, y, 32, 32, 0, icon_n*32);
|
||||
}
|
||||
|
||||
#endif
|
@ -4,13 +4,12 @@
|
||||
2008-2017
|
||||
*/
|
||||
|
||||
#define MEMSIZE 4096 * 12
|
||||
#define MEMSIZE 4096 * 15
|
||||
#include "..\lib\gui.h"
|
||||
#include "..\lib\random.h"
|
||||
|
||||
#include "..\lib\obj\libio.h"
|
||||
#include "..\lib\obj\libimg.h"
|
||||
#include "..\lib\patterns\libimg_load_skin.h"
|
||||
|
||||
proc_info Form;
|
||||
|
||||
|
@ -18,8 +18,6 @@ od_filter filter2 = { 8, "MP3\0\0" };
|
||||
#include "..\lib\obj\libimg.h"
|
||||
#include "..\lib\obj\libini.h"
|
||||
|
||||
#include "..\lib\patterns\libimg_load_skin.h"
|
||||
|
||||
#define ABOUT_MESSAGE "'Pixies Player v1.4\n\nOpen file: O key\nChange skin: F1/F2
|
||||
Play/Stop: Space or P key\nStart playing selected file: Enter
|
||||
Goto next/previous track: Ctrl + Left/Right
|
||||
|
@ -18,7 +18,6 @@
|
||||
#include "../lib/obj/proc_lib.h"
|
||||
#include "../lib/obj/box_lib.h"
|
||||
|
||||
#include "../lib/patterns/libimg_load_skin.h"
|
||||
#include "../lib/patterns/simple_open_dialog.h"
|
||||
|
||||
//===================================================//
|
||||
@ -33,19 +32,19 @@ od_filter filter2 = { 15, "MP3\0WAV\0XM\0\0" };
|
||||
|
||||
#define ABOUT_MESSAGE "Pixie Player v2.81
|
||||
|
||||
A tiny music folder player.
|
||||
Supports MP3, WAV, XM audio file formats.
|
||||
A tiny music folder player.
|
||||
Supports MP3, WAV, XM audio file formats.
|
||||
|
||||
Controls:
|
||||
Open file: O key
|
||||
Play/Stop: Space or P key
|
||||
Start playing selected file: Enter
|
||||
Goto next/previous track: Ctrl + Left/Right
|
||||
Change sound volume: Left/Right key
|
||||
Remove from the list: Delete
|
||||
Repeat: R
|
||||
Shuffle: S
|
||||
Mute: M
|
||||
Hot keys:
|
||||
Open file: O key
|
||||
Play/Stop: Space or P key
|
||||
Start playing selected file: Enter
|
||||
Goto next/previous track: Ctrl + Left/Right
|
||||
Change sound volume: Left/Right key
|
||||
Remove from the list: Delete
|
||||
Repeat: R
|
||||
Shuffle: S
|
||||
Mute: M
|
||||
|
||||
kolibri-n.org & aspero.pro"
|
||||
|
||||
@ -145,7 +144,7 @@ void main()
|
||||
if (mouse.dblclick) EventStartPlayingSelectedItem();
|
||||
if (mouse.down) && (mouse.key&MOUSE_LEFT)
|
||||
&& (list.ProcessMouse(mouse.x, mouse.y)) DrawPlayList();
|
||||
if (mouse.down) && (mouse.key&MOUSE_RIGHT) CreateThread(#EventShowAbout,#menu_stak+4092);
|
||||
if (mouse.down) && (mouse.key&MOUSE_RIGHT) EventShowAbout();
|
||||
}
|
||||
if(mouse.key&MOUSE_LEFT) && (mouse.x<14)
|
||||
&& (window_mode == WINDOW_MODE_SMALL) EventDragWindow();
|
||||
@ -180,6 +179,7 @@ void main()
|
||||
if (key_scancode==SCAN_CODE_ENTER) EventStartPlayingSelectedItem();
|
||||
if (key_scancode==SCAN_CODE_DEL) EventDeleteItem();
|
||||
if (key_scancode==SCAN_CODE_KEY_P)||(key_scancode==SCAN_CODE_SPACE) EventPlayAndPause();
|
||||
if (key_scancode==SCAN_CODE_F1) EventShowAbout();
|
||||
if (list.ProcessKey(key_scancode)) DrawPlayList();
|
||||
break;
|
||||
case evReDraw:
|
||||
@ -518,6 +518,11 @@ void EventDeleteItem()
|
||||
}
|
||||
|
||||
void EventShowAbout()
|
||||
{
|
||||
CreateThread(#ShowAboutThread,#menu_stak+4092);
|
||||
}
|
||||
|
||||
void ShowAboutThread()
|
||||
{
|
||||
proc_info pop_up;
|
||||
loop() switch(WaitEvent())
|
||||
@ -532,14 +537,18 @@ void EventShowAbout()
|
||||
case evReDraw:
|
||||
DefineDragableWindow(150, 200, 400, 346);
|
||||
GetProcessInfo(#pop_up, SelfInfo);
|
||||
|
||||
DrawBar(0, 0, pop_up.width, pop_up.height, theme.color_top_panel_bg);
|
||||
DrawRectangle(0, 0, pop_up.width, pop_up.height, theme.color_list_border);
|
||||
WriteTextLines(10, 10, 0x90, theme.color_top_panel_song_name, ABOUT_MESSAGE, 19);
|
||||
|
||||
DefineHiddenButton(pop_up.width - 27, 1, 26, 15, BUTTON_WINDOW_CLOSE);
|
||||
img_draw stdcall(skin.image, pop_up.width-28, 0, 28, 18, skin.w - 29, 0);
|
||||
DrawCaptButton(pop_up.width-10-80, pop_up.height - 34, 80, 24, 2,
|
||||
theme.color_list_active_bg, theme.color_top_panel_song_name, "Cool");
|
||||
|
||||
WriteTextLines(10, 10, 0x90, theme.color_top_panel_song_name, ABOUT_MESSAGE, 19);
|
||||
DrawIcon32(10, 48, theme.color_top_panel_bg, 65);
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -14,7 +14,6 @@ SOFTWARE CENTER v2.8
|
||||
#include "..\lib\kfont.h"
|
||||
#include "..\lib\list_box.h"
|
||||
#include "..\lib\collection.h"
|
||||
#include "..\lib\patterns\libimg_load_skin.h"
|
||||
|
||||
proc_info Form;
|
||||
llist list;
|
||||
|
@ -18,9 +18,6 @@
|
||||
#include "../lib/obj/libimg.h"
|
||||
#include "../lib/obj/libini.h"
|
||||
|
||||
#include "../lib/patterns/libimg_load_skin.h"
|
||||
|
||||
|
||||
//===================================================//
|
||||
// //
|
||||
// DATA //
|
||||
|
@ -17,7 +17,6 @@ Copyright (C) 2008 O.Bogomaz
|
||||
|
||||
#include "..\lib\obj\libio.h"
|
||||
#include "..\lib\obj\libimg.h"
|
||||
#include "..\lib\patterns\libimg_load_skin.h"
|
||||
|
||||
libimg_image menu;
|
||||
libimg_image road;
|
||||
|
@ -9,7 +9,6 @@
|
||||
#include "../lib/obj/libini.h"
|
||||
#include "../lib/obj/iconv.h"
|
||||
#include "../lib/obj/proc_lib.h"
|
||||
#include "../lib/patterns/libimg_load_skin.h"
|
||||
#include "../lib/patterns/simple_open_dialog.h"
|
||||
|
||||
#define TOOLBAR_H 34
|
||||
|
Loading…
Reference in New Issue
Block a user