#ifndef AUTOBUILD ?include "lang.h--" #endif #define MEMSIZE 0xDFE800 #include "..\lib\mem.h" #include "..\lib\strings.h" #include "..\lib\list_box.h" #include "..\lib\clipboard.h" #include "..\lib\gui.h" #include "..\lib\obj\box_lib.h" //===================================================// // // // DATA // // // //===================================================// ?define WINDOW_HEADER "Clipboard Viewer v1.02" ?define T_DELETE_LAST_SLOT "Delete last slot" ?define T_DELETE_ALL_SLOTS "Delete all slots" ?define T_RESET_BUFFER_LOCK "Reset the lock buffer" ?define T_COLUMNS_TITLE "# | Data size | Data type | Contents" ?define T_COLUMN_VIEW "View" ?define T_VIEW_OPTIONS "TEXT HEX" ?define T_CLIPBOARD_IS_EMPTY "Clipboard is empty" ?define DEFAULT_SAVE_PATH "/tmp0/1/clipview.tmp" char *data_type[] = { "Text", "Image", "RAW", "Unknown" }; enum { BT_DELETE_LAST_SLOT = 10, BT_DELETE_ALL_SLOTS, BT_UNLOCK }; #define PANEL_TOP_H 20 #define PANEL_BOTTOM_H 30 #define LIST_PADDING 12 llist list; proc_info Form; Clipboard clipboard; scroll_bar scroll1 = { 18,200,398, 44,18,0,115,15,0,0xeeeeee,0xD2CED0,0x555555,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1}; //===================================================// // // // CODE // // // //===================================================// void main() { int id; list.SetFont(8, 14, 0x90); list.no_selection = true; SetEventMask(0x27); load_dll(boxlib, #box_lib_init,0); loop() { WaitEventTimeout(10); switch(EAX & 0xFF) { case evMouse: if (!CheckActiveProcess(Form.ID)) break; mouse.get(); scrollbar_v_mouse (#scroll1); if (list.first != scroll1.position) { list.first = scroll1.position; Draw_List(); break; } if (mouse.vert) && (list.MouseScroll(mouse.vert)) Draw_List(); break; case evButton: id=GetButtonID(); if (id==1) ExitProcess(); if (id==BT_DELETE_LAST_SLOT) EventDeleteLastSlot(); if (id==BT_DELETE_ALL_SLOTS) EventDeleteAllSlots(); if (id==BT_UNLOCK) EventResetBufferLock(); if (id>=100) && (id<300) EventOpenAsText(id-100); if (id>=300) EventOpenAsHex(id-300); break; case evKey: GetKeys(); if (list.ProcessKey(key_scancode)) Draw_List(); break; case evReDraw: system.color.get(); DefineAndDrawWindow(screen.width-700/2,80,700,454+skin_height,0x73,0xE4DFE1,WINDOW_HEADER,0); GetProcessInfo(#Form, SelfInfo); IF (Form.status_window>=2) break; if (Form.height < 200) { MoveSize(OLD,OLD,OLD,200); break; } if (Form.width < 570) { MoveSize(OLD,OLD,570,OLD); break; } list.SetSizes(LIST_PADDING, LIST_PADDING+PANEL_TOP_H, Form.cwidth-LIST_PADDING-LIST_PADDING-scroll1.size_x, Form.cheight-PANEL_BOTTOM_H-PANEL_TOP_H-LIST_PADDING-LIST_PADDING, 20); DrawWindowContent(); Draw_List(); break; default: if (clipboard.GetSlotCount() > list.count) Draw_List(); break; } } } void DrawWindowContent() { int button_x = list.x; DrawBar(0,0, Form.cwidth, PANEL_TOP_H, system.color.work); DrawBar(0,Form.cheight-PANEL_BOTTOM_H, Form.cwidth, PANEL_BOTTOM_H, system.color.work); DrawRectangle3D(list.x-2, list.y-2, list.w+3+scroll1.size_x, list.h+3, system.color.work_dark, system.color.work_light); DrawWideRectangle(list.x-LIST_PADDING, list.y-LIST_PADDING, LIST_PADDING*2+list.w+scroll1.size_x, LIST_PADDING*2+list.h, LIST_PADDING-2, system.color.work); button_x += DrawStandartCaptButton(button_x, list.y + list.h + 8, BT_DELETE_LAST_SLOT, T_DELETE_LAST_SLOT); button_x += DrawStandartCaptButton(button_x, list.y + list.h + 8, BT_DELETE_ALL_SLOTS, T_DELETE_ALL_SLOTS); button_x += DrawStandartCaptButton(button_x, list.y + list.h + 8, BT_UNLOCK, T_RESET_BUFFER_LOCK); DrawRectangle(list.x-1, list.y-1, list.w+1+scroll1.size_x, list.h+1, system.color.work_graph); WriteText(list.x+12, list.y - 23, list.font_type, system.color.work_text, T_COLUMNS_TITLE); WriteText(list.x+list.w-68, list.y - 23, list.font_type, system.color.work_text, T_COLUMN_VIEW); } void DrawScroller() { scroll1.bckg_col = MixColors(system.color.work, 0xBBBbbb, 80); scroll1.frnt_col = MixColors(system.color.work,0xFFFfff,120); scroll1.line_col = system.color.work_graph; scroll1.max_area = list.count; scroll1.cur_area = list.visible; scroll1.position = list.first; scroll1.all_redraw=1; scroll1.start_x = list.x + list.w; scroll1.start_y = list.y-1; scroll1.size_y = list.h+2; scrollbar_v_draw(#scroll1); } replace_char(dword in_str, char from_char, to_char, int length) { int i; for (i=0; i list.visible) list_last = list.visible; else list_last = list.count; for (i=0; i