function process_main($window, $id, $ctrl, $lparam1 = 0, $lparam2 = 0) { global $wb, $statusbar; switch ($id) { case IDC_TREEVIEW: $selnode = wb_get_selected($wb->tree_view); if ($wb->left_control) { wb_set_visible($wb->left_control, false); } switch (wb_get_value($wb->tree_view)) { case 2002: include_once PATH_FORM . 'Contact.form.php'; $wb->current_ctl = new ContactForm(); $wb->left_control = $wb->current_ctl->renderForm(); break; case 2003: $wb->left_control = wb_create_control($wb->mainwin, CheckBox, "Checkbox 1", 170, 105, 91, 14, 0); break; case 2004: $wb->left_control = wb_create_control($wb->mainwin, RTFEditBox, "Rich text", 170, 120, 205, 55, 0); break; } wb_set_text($wb->statusbar, "Selected item: " . wb_get_text($wb->tree_view, $selnode) . " / Value: " . wb_get_value($wb->tree_view) . " / Parent: " . wb_get_parent($wb->tree_view, $selnode) . " / Level: " . wb_get_level($wb->tree_view, $selnode) . " / State: " . (wb_get_state($wb->tree_view, $selnode) ? "expanded" : "collapsed")); break; case IDCLOSE: // IDCLOSE is predefined if (wb_message_box($wb->mainwin, $wb->vars["Lang"]["lang_sure_logout"], $wb->vars["Lang"]["system_name"], WBC_QUESTION | WBC_YESNO)) { wb_destroy_window($window); } break; case IDC_CATEGORY_LIST_VIEW: $sel = wb_get_selected($ctrl); $sel = $sel ? implode(", ", $sel) : "none"; wb_message_box($wb->mainwin, $sel); break; default: include_once PATH_FORM . 'contact.handle.php'; process_ContactForm($window, $id, $ctrl, $lparam1, $lparam2); break; } }
function process_project($window, $id, $ctrl) { global $wb; switch ($id) { case IDC_ISTABPAGE: $val = wb_get_value($ctrl); wb_set_enabled(wb_get_control($wb->winproject, IDC_TABNUMBER), $val); wb_set_enabled(wb_get_control($wb->winproject, IDC_TABNUMBERSPINNER), $val); break; case IDC_CTRLVAR: $hastext = wb_get_text($ctrl) !== ''; wb_set_enabled(wb_get_control($wb->winproject, IDC_STARTCTRLVAL), $hastext); break; case IDC_LOCALIZE: wb_set_enabled(wb_get_control($wb->winproject, IDC_LOCPREFIX), wb_get_value($ctrl)); break; case IDOK: // Set various settings foreach ($wb->project_array as $var) { $var = strtolower($var); $ctrl = wb_get_control($wb->winproject, constant("IDC_" . strtoupper($var))); if (wb_get_class($ctrl) != RadioButton && wb_get_class($ctrl) != CheckBox) { $wb->form[$wb->currentform]->{$var} = wb_get_text($ctrl); } else { $wb->form[$wb->currentform]->{$var} = wb_get_value($ctrl); } } // Fall-through // Fall-through case IDCANCEL: set_default_accel(); wb_destroy_window($window); break; } }
function process_options($window, $id, $ctrl) { global $wb; switch ($id) { case IDC_WIREFRAME: case IDC_GRID: wb_set_value(wb_get_control($wb->mainwin, $id), wb_get_value($ctrl)); break; case IDC_BROWSE: $current = wb_get_text(wb_get_control($window, IDC_FILEPATH)); $path = wb_sys_dlg_path($window, 'Select default path for project files:', $current); if ($path) { wb_set_text(wb_get_control($window, IDC_FILEPATH), $path); } break; case IDOK: // Set various settings foreach ($wb->options_array as $var) { $var = strtolower($var); $ctrl = wb_get_control($wb->winoptions, constant("IDC_" . strtoupper($var))); if (wb_get_class($ctrl) == CheckBox) { $wb->{$var} = wb_get_value($ctrl); } else { $wb->{$var} = wb_get_text($ctrl); } } // Fall-through // Fall-through case IDCANCEL: set_default_accel(); wb_destroy_window($window); break; } }
function process_test_lists($window, $id, $ctrl = 0, $lparam = 0) { // $ctrl = wb_get_control($window, $id); switch ($id) { case IDC_LISTLINE: $n = wb_get_value($ctrl); $text = wb_get_text(wb_get_control($window, IDC_LISTVIEW2027), $n); if (is_array($text)) { $elem = $text[1]; $text = implode(" ", $text); } wb_set_text(wb_get_control($window, IDC_EDIT2064), "{$n} [{$text}]\r\n{$elem}"); return true; case IDC_LISTVIEW2027: case IDC_LISTVIEW2067: if ($lparam == WBC_DBLCLICK) { wb_set_text(wb_get_control($window, IDC_EDIT2064), "Double-clicked."); } else { $val = wb_get_value($ctrl); if ($val && is_array($val)) { $val = implode(", ", $val); } $sel = wb_get_selected($ctrl); if ($sel && is_array($sel)) { $sel = implode(", ", $sel); } $text = wb_get_text($ctrl); if (@is_array($text[0])) { $all = $text; $text = ""; foreach ($all as $arr) { $text .= "(" . implode(", ", $arr) . ") "; } } elseif (is_array($text)) { $text = implode(", ", $text); } wb_set_text(wb_get_control($window, IDC_EDIT2064), "Selected rows: {$sel}\nValues: [{$val}]\nText: {$text}"); } return true; case IDC_LISTBOX2018: case IDC_COMBOBOX2010: $val = wb_get_value($ctrl); $text = wb_get_text($ctrl); wb_set_text(wb_get_control($window, IDC_EDIT2064), "[{$text}] [val: {$val}]"); return true; } return false; }
function process_refundment($window, $id, $ctrl, $lparam1 = 0, $lparam2 = 0) { global $wb; switch ($id) { case IDC_NAV_FIRST: $wb->current_page = 1; reset_refundment_view(); break; case IDC_NAV_PRE: $wb->current_page -= 1; $wb->current_page = $wb->current_page < 1 ? 1 : $wb->current_page; reset_refundment_view(); break; case IDC_NAV_NEXT: $wb->current_page += 1; $wb->current_page = $wb->current_page > $wb->total_page ? $wb->total_page : $wb->current_page; reset_refundment_view(); break; case IDC_NAV_LAST: $wb->current_page = $wb->total_page; reset_refundment_view(); break; case IDC_REFUNDMENT_LIST: if ($lparam1 == WBC_DBLCLICK) { $current_rows = wb_get_text($ctrl); $current_id = $current_rows[0][0]; $wb->current_ids = $current_id; $wb->current_form_state = false; $wb->current_action = 'update'; if ($wb->current_ids) { include_once PATH_FORM . "yc_refundment_edit.form.inc.php"; create_refundment_edit_dlg(); } } // Show current selection and checked items $sel = wb_get_selected($ctrl); $sel = $sel ? implode(", ", $sel) : "none"; $contents = wb_get_text($ctrl); $text = ""; if ($contents) { foreach ($contents as $row) { $text .= $row ? "[" . implode(", ", $row) . "] " : ""; } } $checked = wb_get_value($ctrl); $temp_str = ""; if ($checked) { foreach ($checked as $value) { $row_data = wb_get_text($ctrl, $value, 0); $temp_str .= $row_data . ","; } $del_ids = rtrim($temp_str, ','); $wb->del_ids = $del_ids; } $checked = $checked ? implode(", ", $checked) : "none"; wb_set_text($wb->statusbar, "Selected lines: " . $sel . " / checked: " . $checked . " / deleted: " . $del_ids . " / contents: " . $text); break; case IDC_REFUNDMENT_CATEGORY_LIST: if ($lparam1 == WBC_DBLCLICK) { $current_rows = wb_get_text($ctrl); $current_id = $current_rows[0][0]; $wb->current_ids = $current_id; $wb->current_form_state = false; $wb->current_action = 'update'; if ($wb->current_ids) { include_once PATH_FORM . "yc_refundment_category_edit.form.inc.php"; create_refundment_category_edit_dlg(); } } // Show current selection and checked items $sel = wb_get_selected($ctrl); $sel = $sel ? implode(", ", $sel) : "none"; $contents = wb_get_text($ctrl); $text = ""; if ($contents) { foreach ($contents as $row) { $text .= $row ? "[" . implode(", ", $row) . "] " : ""; } } $checked = wb_get_value($ctrl); $temp_str = ""; if ($checked) { foreach ($checked as $value) { $row_data = wb_get_text($ctrl, $value, 0); $temp_str .= $row_data . ","; } $del_ids = rtrim($temp_str, ','); $wb->del_ids = $del_ids; } $checked = $checked ? implode(", ", $checked) : "none"; wb_set_text($wb->statusbar, "Selected lines: " . $sel . " / checked: " . $checked . " / deleted: " . $del_ids . " / contents: " . $text); break; } }
function process_main($window, $id, $ctrl) { global $statusbar, $fmod, $mainwin; switch ($id) { case ID_INFOTIMER: $status = "´ÅÅÌ: " . $fmod->fmod_GetOutputName() . " "; $status .= "¸èÇú³¤¶È: " . $fmod->fmod_GetLenght(true) . " ·ÖÖÓ "; $status .= "ÒѲ¥·Å: " . $fmod->fmod_Msec2Time($fmod->fmod_GetTime(true)) . " sec "; if ($song_name = $fmod->fmodStreamUrl) { $status .= "Ãû³Æ: {$song_name} "; } wb_set_text($statusbar, $status); // play position if ($fmod->fmod_GetLenght(false)) { wb_set_value(wb_get_control($mainwin, ID_PLAY_POS), round($fmod->fmod_GetTime(false) / $fmod->fmod_GetLenght(false), 2) * 100); } if ($fmod->fmod_GetTime(false) == $fmod->fmod_GetLenght(false)) { $fmod->fmod_StreamOpen($fmod->fmodStreamUrl); $fmod->fmod_StreamPlay(); } break; case ID_OPEN: $filename = wb_sys_dlg_open(); if ($filename) { if ($fmod->fmod_StreamOpen($filename)) { $fmod->fmod_StreamPlay(); // returns true, then play } else { wb_message_box($window, "Error opening Audiostream!\n" . $fmod->lasterror, APPNAME, WBC_INFO); } } break; case ID_CLOSE: $fmod->fmod_StreamStop(); break; case ID_PLAY: $fmod->fmod_StreamPlay(); break; case ID_STOP: $fmod->fmod_StreamStop(); break; case ID_PAUSE: if ($fmod->fmodStreamState == 1) { switch ($fmod->fmodIsPaused) { case 0: $fmod->fmod_SoundPause(true); wb_set_text($ctrl, "¼ÌÐø.."); break; case 1: $fmod->fmod_SoundPause(false); wb_set_text($ctrl, "ÔÝÍ£"); break; } } break; case ID_MUTE: if ($fmod->fmodStreamState == 1) { switch ($fmod->fmodIsMuted) { case 0: $fmod->fmod_SoundMute(true); wb_set_text($ctrl, "·ÅÒô"); break; case 1: $fmod->fmod_SoundMute(false); wb_set_text($ctrl, "¾²Òô"); break; } } break; case ID_SURROUND: switch ($fmod->fmodSurroundEnabled) { case 0: $fmod->fmod_SetSurround(true); wb_set_text($ctrl, "Ñ»·"); break; case 1: $fmod->fmod_SetSurround(false); wb_set_text($ctrl, "²»Ñ»·"); break; } break; case ID_VOLUMEN: $fmod->fmod_SetVolumen(wb_get_value($ctrl)); wb_set_text($statusbar, "ÒôÁ¿: " . $fmod->fmod_GetVolumen()); break; case ID_BALANCE: $fmod->fmod_SetPanning(wb_get_value($ctrl)); break; case ID_BALCENTER: $fmod->fmod_SetPanning(127); wb_set_value(wb_get_control($window, ID_BALANCE), 127); break; case IDCLOSE: $fmod->fmod_SoundClose(); wb_release_library($fmod->fmodlib); wb_destroy_window($window); break; } }
function process_test_values($window, $id, $ctrl = 0, $lparam1 = 0, $lparam2 = 0) { global $statusbar; if ($lparam1 == WBC_GETFOCUS) { wb_set_text($statusbar, "Focus to control {$id}"); return false; } switch ($id) { case IDC_EDIT4069: case IDC_EDIT4071: if ($lparam1 == WBC_KEYDOWN) { wb_set_text($statusbar, "Char {$lparam2}: " . chr($lparam2)); } break; case IDC_EDIT4057: if ($lparam1 == WBC_KEYDOWN) { wb_set_text($statusbar, "Char {$lparam2}: " . chr($lparam2)); // wb_set_text(wb_get_control($window, IDC_STATIC4048), $lparam2 . "\n" . chr($lparam2)); break; } $text = wb_get_text(wb_get_control($window, IDC_EDIT4057)); wb_set_text(wb_get_control($window, IDC_EDIT4058), $text); wb_set_text(wb_get_control($window, IDC_EDIT4059), $text); wb_set_text(wb_get_control($window, IDC_EDIT4065), implode(" ", array_fill(0, 20, $text))); break; case IDC_LISTBOX4053: if ($lparam1 & WBC_DBLCLICK) { wb_set_text(wb_get_control($window, IDC_STATIC4048), "Double-click"); } else { wb_set_text(wb_get_control($window, IDC_STATIC4048), "Single click"); } break; case IDC_HSCROLL4056: case IDC_SLIDER4011: $value = wb_get_value(wb_get_control($window, $id)); wb_set_value(wb_get_control($window, IDC_PROGRESSBAR4007), $value); wb_set_text(wb_get_control($window, IDC_STATIC4019), $value); wb_set_value(wb_get_control($window, IDC_HSCROLL4026), $value); wb_set_value(wb_get_control($window, IDC_VSCROLL4051), $value); wb_set_value(wb_get_control($window, IDC_UPDOWN4028), $value); $value = wb_get_value(wb_get_control($window, $id)); wb_set_text(wb_get_control($window, IDC_STATIC4048), "Control #{$id}: value [{$value}]\n"); wb_set_value(wb_get_control($window, IDC_EDIT4052), $value); break; case IDC_RADIOBUTTON4014: case IDC_RADIOBUTTON4015: case IDC_RADIOBUTTON4016: $value = $id - IDC_RADIOBUTTON4014; wb_set_value(wb_get_control($window, IDC_LISTBOX4053), $value); wb_set_value(wb_get_control($window, IDC_COMBOBOX4054), $value); wb_set_value(wb_get_control($window, IDC_LISTBOX4055), $value); break; case IDC_CHECKBOX4034: wb_set_selected(wb_get_control($window, IDC_CHECKBOX4049), wb_get_selected($ctrl)); $value = wb_get_value(wb_get_control($window, $id)); wb_set_text(wb_get_control($window, IDC_STATIC4048), "Control #{$id}: value [{$value}]\n"); break; case IDC_UPDOWN4028: case IDC_CHECKBOX4049: $value = wb_get_value(wb_get_control($window, $id)); wb_set_text(wb_get_control($window, IDC_STATIC4048), "Control #{$id}: value [{$value}]\n"); break; } }
function process_main($window, $id, $ctrl, $lparam1 = 0, $lparam2 = 0) { global $wb; switch ($id) { case ID_CREATE: $wb->current_ids = null; $wb->current_action = "insert"; switch ($wb->current_module) { case "contact": include_once PATH_FORM . "yc_contact_edit.form.inc.php"; create_contact_edit_dlg(); break; case "contact_category": case "company": case "product": case "product_category": case "opportunity": case "order": case "order_category": case "agreement": case "agreement_category": case "complaints": case "complaints_category": case "refundment": case "refundment_category": case "review": $module_name = $wb->current_module; $function_name = "create_{$module_name}_edit_dlg"; include_once PATH_FORM . "yc_{$module_name}_edit.form.inc.php"; $function_name(); break; } wb_set_text($wb->statusbar, "Create module: " . $wb->current_module); break; case IDC_TOOLBAR_SEARCH: switch ($wb->current_module) { case "contact": create_contact_search_dlg($window); break; case "contact_category": create_category_contact_search_dlg($window); break; case "company": case "product": case "product_category": case "opportunity": case "order": case "order_category": case "agreement": case "agreement_category": case "complaints": case "complaints_category": case "refundment": case "refundment_category": case "review": $module_name = $wb->current_module; $function_name = "create_{$module_name}_search_dlg"; include_once PATH_FORM . "yc_{$module_name}_search.form.inc.php"; $function_name(); break; } wb_set_text($wb->statusbar, "Search module: " . $wb->current_module); break; case ID_DELETE: switch ($wb->current_module) { case "contact": del_selected_contact(); break; case "contact_category": case "company": case "product": case "product_category": case "opportunity": case "order": case "order_category": case "agreement": case "agreement_category": case "complaints": case "complaints_category": case "refundment": case "refundment_category": case "review": $module_name = $wb->current_module; $function_name = "del_selected_{$module_name}"; $function_name(); break; } wb_set_text($wb->statusbar, "Deleted module: " . $wb->current_module); break; case IDC_LEFT_TREE: $selnode = wb_get_selected($wb->tree_view); if ($wb->right_control) { wb_set_visible($wb->right_control, false); } switch (wb_get_value($wb->tree_view)) { case 2001: case 2002: $wb->current_module = "contact"; $wb->keyword = null; $wb->current_page = 1; $wb->del_ids = null; displayContactForm(); break; case 2003: $wb->current_module = "company"; $wb->keyword = null; $wb->current_page = 1; $wb->del_ids = null; include_once PATH_FORM . "yc_company.form.inc.php"; displayCompanyMainTabForm(); break; case 2004: $wb->current_module = "product"; $wb->keyword = null; $wb->current_page = 1; $wb->del_ids = null; include_once PATH_FORM . "yc_product.form.inc.php"; display_product_main_tab_form(); break; case 2005: case 2006: $wb->current_module = "opportunity"; $wb->keyword = null; $wb->current_page = 1; $wb->del_ids = null; include_once PATH_FORM . "yc_opportunity.form.inc.php"; display_opportunity_main_tab_form(); break; case 2007: $wb->current_module = "order"; $wb->keyword = null; $wb->current_page = 1; $wb->del_ids = null; include_once PATH_FORM . "yc_order.form.inc.php"; display_order_main_tab_form(); break; case 2008: $wb->current_module = "agreement"; $wb->keyword = null; $wb->current_page = 1; $wb->del_ids = null; include_once PATH_FORM . "yc_agreement.form.inc.php"; display_agreement_main_tab_form(); break; case 2009: case 2010: $wb->current_module = "complaints"; $wb->keyword = null; $wb->current_page = 1; $wb->del_ids = null; include_once PATH_FORM . "yc_complaints.form.inc.php"; display_complaints_main_tab_form(); break; case 2011: $wb->current_module = "refundment"; $wb->keyword = null; $wb->current_page = 1; $wb->del_ids = null; include_once PATH_FORM . "yc_refundment.form.inc.php"; display_refundment_main_tab_form(); break; case 2012: $wb->current_module = "review"; $wb->keyword = null; $wb->current_page = 1; $wb->del_ids = null; include_once PATH_FORM . "yc_review.form.inc.php"; display_review_main_tab_form(); break; } wb_set_text($wb->statusbar, "Selected item: " . wb_get_text($wb->tree_view, $selnode) . " / Value: " . wb_get_value($wb->tree_view) . " / Parent: " . wb_get_parent($wb->tree_view, $selnode) . " / Level: " . wb_get_level($wb->tree_view, $selnode) . " / State: " . (wb_get_state($wb->tree_view, $selnode) ? "expanded" : "collapsed")); break; case IDCLOSE: // IDCLOSE is predefined if (wb_message_box($wb->mainwin, $wb->vars["Lang"]["lang_sure_logout"], $wb->vars["Lang"]["system_name"], WBC_QUESTION | WBC_YESNO)) { wb_destroy_window($window); } break; case ID_ABOUT: include_once PATH_FORM . "yc_about.form.inc.php"; display_about_dlg(); break; case ID_SETTING: include_once PATH_FORM . "yc_setting.form.inc.php"; display_setting_dlg(); break; default: if (process_contact($window, $id, $ctrl, $lparam1, $lparam2)) { break; } if (wb_get_class($ctrl) == TabControl && $lparam1 & WBC_HEADERSEL) { switch ($id) { case IDC_CONTACT_FORM: if ($lparam2 == 0) { $wb->current_module = "contact"; } else { $wb->current_module = "contact_category"; } break; case IDC_PRODUCTS_TAB: if ($lparam2 == 0) { $wb->current_module = "product"; } else { $wb->current_module = "product_category"; } break; case IDC_ORDER_TAB: if ($lparam2 == 0) { $wb->current_module = "order"; } else { $wb->current_module = "order_category"; } break; case IDC_AGREEMENT_TAB: if ($lparam2 == 0) { $wb->current_module = "agreement"; } else { $wb->current_module = "agreement_category"; } break; case IDC_COMPLAINTS_TAB: if ($lparam2 == 0) { $wb->current_module = "complaints"; } else { $wb->current_module = "complaints_category"; } break; case IDC_REFUNDMENT_TAB: if ($lparam2 == 0) { $wb->current_module = "refundment"; } else { $wb->current_module = "refundment_category"; } break; } wb_set_text($wb->statusbar, "Tab #{$lparam2} of tab control #{$id} selected."); } else { wb_set_text($wb->statusbar, "Control ID: " . $id); } break; } }