#include <stdlib.h>
#include <TROOT.h>
#include <TClass.h>
#include <TApplication.h>
#include <TVirtualX.h>
#include <TVirtualPadEditor.h>
#include <TGResourcePool.h>
#include <TGListBox.h>
#include <TGListTree.h>
#include <TGFSContainer.h>
#include <TGClient.h>
#include <TGFrame.h>
#include <TGIcon.h>
#include <TGLabel.h>
#include <TGButton.h>
#include <TGTextEntry.h>
#include <TGNumberEntry.h>
#include <TGMsgBox.h>
#include <TGMenu.h>
#include <TGCanvas.h>
#include <TGComboBox.h>
#include <TGTab.h>
#include <TGSlider.h>
#include <TGDoubleSlider.h>
#include <TGFileDialog.h>
#include <TGTextEdit.h>
#include <TGShutter.h>
#include <TGProgressBar.h>
#include <TGColorSelect.h>
#include <RQ_OBJECT.h>
#include <TRootEmbeddedCanvas.h>
#include <TCanvas.h>
#include <TColor.h>
#include <TH1.h>
#include <TH2.h>
#include <TRandom.h>
#include <TSystem.h>
#include <TSystemDirectory.h>
#include <TEnv.h>
#include <TFile.h>
#include <TKey.h>
#include <TGDockableFrame.h>
#include <TGFontDialog.h>
Go to the source code of this file.
Classes | |
struct | shutterData_t |
class | TestMainFrame |
class | TestDialog |
class | TestMsgBox |
class | TestSliders |
class | TestShutter |
class | TestDirList |
class | TestFileList |
class | TestProgress |
class | EntryTestDlg |
class | Editor |
class | TileFrame |
Enumerations | |
enum | ETestCommandIdentifiers |
Functions | |
void | guitest () |
Variables | |
Int_t | mb_button_id [13] |
EMsgBoxIcon | mb_icon [4] |
const char * | filetypes [] |
shutterData_t | histo_data [] |
shutterData_t | function_data [] |
shutterData_t | tree_data [] |
const char * | editortxt1 |
const char * | editortxt2 |
const char * | editortxt3 |
const char * | editortxt4 |
const char * | editortxt5 |
const char * | editortxt6 |
const char * | numlabel [] |
const Double_t | numinit [] |
void guitest | ( | ) |
const char* editortxt1 |
Initial value:
"This is the ROOT text edit widget TGTextEdit. It is not intended as\n" "a full developers editor, but it is relatively complete and can ideally\n" "be used to edit scripts or to present users editable config files, etc.\n\n" "The text edit widget supports standard emacs style ctrl-key navigation\n" "in addition to the arrow keys. By default the widget has under the right\n" "mouse button a popup menu giving access to several built-in functions.\n\n" "Cut, copy and paste between different editor windows and any other\n" "standard text handling application is supported.\n\n" "Text can be selected with the mouse while holding the left button\n" "or with the arrow keys while holding the shift key pressed. Use the\n" "middle mouse button to paste text at the current mouse location."
const char* editortxt2 |
Initial value:
"Mice with scroll-ball are properly supported.\n\n" "This are the currently defined key bindings:\n" "Left Arrow\n" " Move the cursor one character leftwards.\n" " Scroll when cursor is out of frame.\n" "Right Arrow\n" " Move the cursor one character rightwards.\n" " Scroll when cursor is out of frame.\n" "Backspace\n" " Deletes the character on the left side of the text cursor and moves the\n" " cursor one position to the left. If a text has been marked by the user"
const char* editortxt3 |
Initial value:
" (e.g. by clicking and dragging) the cursor will be put at the beginning\n" " of the marked text and the marked text will be removed.\n" "Home\n" " Moves the text cursor to the left end of the line. If mark is TRUE text\n" " will be marked towards the first position, if not any marked text will\n" " be unmarked if the cursor is moved.\n" "End\n" " Moves the text cursor to the right end of the line. If mark is TRUE text\n" " will be marked towards the last position, if not any marked text will\n" " be unmarked if the cursor is moved.\n" "Delete"
const char* editortxt4 |
Initial value:
" Deletes the character on the right side of the text cursor. If a text\n" " has been marked by the user (e.g. by clicking and dragging) the cursor\n" " will be put at the beginning of the marked text and the marked text will\n" " be removed.\n" "Shift - Left Arrow\n" " Mark text one character leftwards.\n" "Shift - Right Arrow\n" " Mark text one character rightwards.\n" "Control-A\n" " Select the whole text.\n" "Control-B\n" " Move the cursor one character leftwards."
Definition at line 184 of file guitest.C.
Referenced by TestMainFrame::DoButton().
const char* editortxt5 |
Initial value:
"Control-C\n" " Copy the marked text to the clipboard.\n" "Control-D\n" " Delete the character to the right of the cursor.\n" "Control-E\n" " Move the cursor to the end of the line.\n" "Control-F\n" " Start Search Dialog.\n" "Control-H\n" " Delete the character to the left of the cursor.\n" "Control-K\n" " Delete marked text if any or delete all\n" " characters to the right of the cursor.\n" "Control-L\n" " Start GoTo Line Dialog"
Definition at line 198 of file guitest.C.
Referenced by TestMainFrame::DoButton().
const char* editortxt6 |
Initial value:
"Control-U\n" " Delete all characters on the line.\n" "Control-V\n" " Paste the clipboard text into line edit.\n" "Control-X\n" " Cut the marked text, copy to clipboard.\n" "Control-Y\n" " Paste the clipboard text into line edit.\n" "Control-Z\n" " Undo action.\n\n" "All other keys with valid ASCII codes insert themselves into the line."
Definition at line 215 of file guitest.C.
Referenced by TestMainFrame::DoButton().
const char* filetypes[] |
Int_t mb_button_id[13] |
Initial value:
const char* numlabel[] |