Home
last modified time | relevance | path

Searched refs:text_ctrl (Results 1 – 18 of 18) sorted by relevance

/dports/editors/wxhexeditor/wxHexEditor/src/HexEditorCtrl/
H A DHexEditorCtrl.cpp479 text_ctrl->Freeze(); in MyFreeze()
485 text_ctrl->Thaw(); in MyThaw()
498 text_ctrl->RePaint( ); in RePaint()
512 text_ctrl->Show( show ); in ControlShow()
647 text_ctrl->ChangeSize(); in OnResize()
699 text_ctrl->SetFocus(); in OnMouseLeft()
816 text_ctrl->RePaint(); in TagCreator()
851 text_ctrl->RePaint(); in OnTagEdit()
859 text_ctrl->RePaint(); in OnTagEdit()
873 text_ctrl->OnTagHideAll(); in TagHideAll()
[all …]
H A DHexEditorCtrl.h190 …int HexPerLine( void ) { return (hex_ctrl->IsShown() ? hex_ctrl->CharacterPerLine() : text_ctrl->… in HexPerLine()
191 …int BytePerLine( void ) { return (hex_ctrl->IsShown() ? hex_ctrl->BytePerLine() : text_ctrl->ByteP… in BytePerLine()
192 …unsigned ByteCapacity( void ){ return (hex_ctrl->IsShown() ? hex_ctrl->ByteCapacity() : text_ctrl-… in ByteCapacity()
193 …int LineCount( void ) { return (hex_ctrl->IsShown() ? hex_ctrl->LineCount() : text_ctrl->LineCount… in LineCount()
194 …int ActiveLine( void ) { return (hex_ctrl->IsShown() ? hex_ctrl->ActiveLine() : text_ctrl->ActiveL… in ActiveLine()
195 …int GetByteCount( void ){ return (hex_ctrl->IsShown() ? hex_ctrl->GetByteCount() : text_ctrl->GetB… in GetByteCount()
196 …on( void ){ return (hex_ctrl->IsShown() ? hex_ctrl->GetLastPosition() : text_ctrl->GetLastPosition… in GetLastPosition()
H A DHexEditorCtrlGui.cpp66text_ctrl = new wxHexTextCtrl( this, ID_TEXTBOX, wxEmptyString, wxDefaultPosition, wxSize( -1,-1 )… in HexEditorCtrlGui()
67 text_ctrl->SetFont( wxFont( 10, 70, 90, 90, false, wxT("sans") ) ); in HexEditorCtrlGui()
68 text_ctrl->SetMinSize( wxSize( 45,100 ) ); in HexEditorCtrlGui()
70 fgSizerMain->Add( text_ctrl, 1, wxRIGHT|wxEXPAND, 2 ); in HexEditorCtrlGui()
H A DHexEditorCtrlGui.h50 wxHexTextCtrl* text_ctrl; variable
/dports/multimedia/aegisub/aegisub-3.2.2/src/
H A Ddialog_log.cpp47 wxTextCtrl *text_ctrl; member in __anoncc467e5b0111::EmitLog
50 : text_ctrl(t) in EmitLog()
84 text_ctrl->AppendText(log); in log()
86 agi::dispatch::Main().Async([=]{ text_ctrl->AppendText(log); }); in log()
101 …wxTextCtrl *text_ctrl = new wxTextCtrl(this, -1, "", wxDefaultPosition, wxSize(700,300), wxTE_MULT… in LogWindow() local
102text_ctrl->SetDefaultStyle(wxTextAttr(wxNullColour, wxNullColour, wxFont(8, wxFONTFAMILY_MODERN, w… in LogWindow()
105 sizer->Add(text_ctrl, wxSizerFlags(1).Expand().Border()); in LogWindow()
109 agi::log::log->Subscribe(std::unique_ptr<agi::log::Emitter>(emit_log = new EmitLog(text_ctrl))); in LogWindow()
/dports/x11-toolkits/py-wxPython40/wxPython-4.0.7/docs/sphinx/rest_substitutions/snippets/python/converted/
H A Dwx.stc.StyledTextCtrl.GetInsertionPoint.1.py2 def GetCurrentChar(self, text_ctrl): argument
4 pos = text_ctrl.GetInsertionPoint()
5 if pos == text_ctrl.GetLastPosition():
8 return text_ctrl.GetRange(pos, pos + 1)
/dports/games/openyahtzee/openyahtzee-1.9.3/src/
H A DMainFrame.cpp648 text_ctrl->SetValue(out); in OnUpperButtons()
650 text_ctrl->Refresh(); in OnUpperButtons()
669 text_ctrl->SetValue(out); in On3ofakindButton()
671 text_ctrl->Refresh(); in On3ofakindButton()
690 text_ctrl->SetValue(out); in On4ofakindButton()
692 text_ctrl->Refresh(); in On4ofakindButton()
714 text_ctrl->Refresh(); in OnFullHouseButton()
736 text_ctrl->Refresh(); in OnSmallSequenceButton()
758 text_ctrl->Refresh(); in OnLargeSequenceButton()
780 text_ctrl->Refresh(); in OnYahtzeeButton()
[all …]
/dports/editors/wxhexeditor/wxHexEditor/src/
H A DHexEditor.cpp1011 else if( event.GetEventObject() == text_ctrl ) { in OnKeyboardChar()
1031 if( text_ctrl->GetInsertionPoint() >= text_ctrl->GetLastPosition() ) { in OnKeyboardChar()
1034 text_ctrl->LastLine(); in OnKeyboardChar()
1035 text_ctrl->Home(); in OnKeyboardChar()
1041 text_ctrl->NextChar(); in OnKeyboardChar()
1082 else if( FindFocus() == text_ctrl ) { in OnMouseLeft()
1083 text_ctrl->CaptureMouse(); in OnMouseLeft()
1092 else if(event.GetEventObject() == text_ctrl) in OnMouseRight()
1116 else if( event.GetEventObject() == text_ctrl ) in ShowContextMenu()
1346 else if (event.GetEventObject()==text_ctrl) in OnMouseSelectionEnd()
[all …]
/dports/x11-toolkits/py-wxPython40/wxPython-4.0.7/docs/sphinx/rest_substitutions/snippets/python/contrib/
H A DNotebook.1.py62 text_ctrl = wx.TextCtrl(self.notebook, style=wx.TE_MULTILINE)
63 text_ctrl.SetValue(text)
66 self.notebook.AddPage(text_ctrl, filename, select=True)
/dports/x11-toolkits/py-wxPython40/wxPython-4.0.7/docs/sphinx/_downloads/
H A DNotebook.1.py62 text_ctrl = wx.TextCtrl(self.notebook, style=wx.TE_MULTILINE)
63 text_ctrl.SetValue(text)
66 self.notebook.AddPage(text_ctrl, filename, select=True)
/dports/games/springlobby/springlobby-0.180/src/utils/
H A Dcustomdialogs.cpp259text_ctrl = new wxTextCtrl(this,-1,wxEmptyString,wxDefaultPosition,wxDefaultSize,wxTE_MULTILINE|wx… in CreditsDialog()
260 container->Add(text_ctrl,1,wxEXPAND); in CreditsDialog()
271 text_ctrl->SetDefaultStyle(wxTextAttr(wxNullColour,wxNullColour,heavyFont)); in AddCredit()
272 text_ctrl->AppendText(person); in AddCredit()
274 text_ctrl->AppendText(_T(": ")); in AddCredit()
275 text_ctrl->SetDefaultStyle(wxTextAttr(wxNullColour,wxNullColour,*wxNORMAL_FONT)); in AddCredit()
276 text_ctrl->AppendText(message ); in AddCredit()
278 text_ctrl->AppendText(_T("\n\n")); in AddCredit()
H A Dcustomdialogs.h228 wxTextCtrl* text_ctrl;
/dports/graphics/py-traitsui/traitsui-7.1.1/traitsui/tests/
H A Dtest_ui.py157 text_ctrl = ui.control.FindWindowByName("text")
158 self.assertIsNotNone(text_ctrl)
186 text_ctrl = ui.control.findChild(qt.QtGui.QLineEdit)
187 self.assertIsNotNone(text_ctrl)
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/blink/renderer/core/editing/
H A Dsurrounding_text_test.cc290 TextControlElement* text_ctrl = reinterpret_cast<TextControlElement*>( in TEST_F() local
293 text_ctrl->SetSelectionRange(4, 7); in TEST_F()
294 EphemeralRange selection = text_ctrl->Selection().ComputeRange(); in TEST_F()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/renderer/core/editing/
H A Dsurrounding_text_test.cc290 TextControlElement* text_ctrl = reinterpret_cast<TextControlElement*>( in TEST_F() local
293 text_ctrl->SetSelectionRange(4, 7); in TEST_F()
294 EphemeralRange selection = text_ctrl->Selection().ComputeRange(); in TEST_F()
/dports/games/frogatto/frogatto-1.3.1/modules/cube_trains/data/object_prototypes/
H A Dct-cursor.cfg397 [ set(text_ctrl.vars.txt, '[]'),
398 set(text_ctrl.vars.size, 1),
399 set(text_ctrl.z, 99999),
400 add_object(text_ctrl),
401 set(vars.text_ctrl, text_ctrl),
402 set(level.focus, [text_ctrl]),
403 ] where text_ctrl = object('text_controller', x, y, 0, {'centered'->0}),
725 text_ctrl.set_text( 'pos: ${str(location)}\\n' + //TODO: Move over to ct-cursor-edit.
729 set(text_ctrl.x, midpoint_x-125/2), set(text_ctrl.y, y+260/2),
/dports/games/frogatto/frogatto-1.3.1/modules/cube_trains/data/objects/
H A Dct-cursor-play.cfg49 on_done_create: "[proto_event('ct-cursor', 'done_create'), set(alpha, 0), remove_object(text_ctrl)]…
/dports/x11-toolkits/py-wxPython40/wxPython-4.0.7/wx/lib/agw/
H A Dfoldpanelbar.py2259 text_ctrl = wx.TextCtrl(self, -1, size=(400, 100), style=wx.TE_MULTILINE)
2269 main_sizer.Add(text_ctrl, 1, wx.EXPAND)