Home
last modified time | relevance | path

Searched refs:right_btn (Results 1 – 10 of 10) sorted by relevance

/dports/net/mpich2/mpich2-1.5/src/mpe2/src/slog2sdk/src/viewer/zoomable/
H A DInfoDialogForDrawable.java41 private JButton right_btn; field in InfoDialogForDrawable
119 right_btn = new JButton( new ImageIcon( icon_URL ) ); in InfoDialogForDrawable()
121 right_btn = new JButton( "FinalVertex" ); in InfoDialogForDrawable()
122 right_btn.setMargin( Const.SQ_BTN1_INSETS ); in InfoDialogForDrawable()
123 right_btn.setToolTipText( in InfoDialogForDrawable()
125 right_btn.setAlignmentX( Component.RIGHT_ALIGNMENT ); in InfoDialogForDrawable()
126 right_btn.addActionListener( new ScrollRightActionListener() ); in InfoDialogForDrawable()
127 close_btn_panel.add( right_btn ); in InfoDialogForDrawable()
130 right_btn = null; in InfoDialogForDrawable()
/dports/devel/cppurses/CPPurses-0.3-5-g342a389/demos/glyph_paint/
H A Dglyph_select.cpp26 right_btn.brush.set_background(Color::Light_gray); in Glyph_select()
27 right_btn.brush.set_foreground(Color::Black); in Glyph_select()
28 right_btn.width_policy.fixed(1); in Glyph_select()
36 right_btn.clicked.connect([this] { this->flip_page_forward(); }); in Glyph_select()
H A Dglyph_select.hpp42 cppurses::Push_button& right_btn{ member in demos::glyph_paint::Glyph_select
/dports/devel/efl/efl-1.25.1/src/bin/elementary/
H A Dtest_ui_stack.c84 Eo *right_btn = efl_add(EFL_UI_BUTTON_CLASS, bn); in _bar_right_btn_set() local
85 efl_text_set(right_btn, "Next"); in _bar_right_btn_set()
86 efl_content_set(efl_part(bn, "right_content"), right_btn); in _bar_right_btn_set()
88 efl_event_callback_add(right_btn, EFL_INPUT_EVENT_CLICKED, clicked_cb, data); in _bar_right_btn_set()
H A Dtest_ui_popup.c324 Eo *right_btn = efl_add(EFL_UI_BUTTON_CLASS, panel_win); in test_ui_popup() local
325 efl_text_set(right_btn, "Right Align"); in test_ui_popup()
326 efl_gfx_entity_position_set(right_btn, EINA_POSITION2D(150, 200)); in test_ui_popup()
327 efl_gfx_entity_size_set(right_btn, EINA_SIZE2D(150, 50)); in test_ui_popup()
328 efl_event_callback_add(right_btn, EFL_INPUT_EVENT_CLICKED, _right_align_cb, p_data); in test_ui_popup()
/dports/devel/cppurses/CPPurses-0.3-5-g342a389/src/widget/
H A Dcycle_stack.cpp19 right_btn.width_policy.fixed(1); in Top_row()
27 right_btn.clicked.connect(slot::cycle_forward(cycle_box)); in Top_row()
/dports/devel/efl/efl-1.25.1/src/examples/elementary/
H A Dpopup_cxx_example.cc297 efl::ui::Button right_btn(instantiate, func_win); in efl_main() local
298 right_btn.text_set("Align Right"); in efl_main()
299 right_btn.position_set({150, 200}); in efl_main()
300 right_btn.size_set({150, 50}); in efl_main()
308 efl::eolian::event_add(efl::input::Clickable::clicked_event, right_btn, right_align_cb); in efl_main()
/dports/audio/ardour6/Ardour-6.8.0/gtk2_ardour/
H A Dardour_ui2.cc264 secondary_clock->right_btn()->show(); in update_clock_visibility()
271 secondary_clock->right_btn()->hide(); in update_clock_visibility()
492 button_height_size_group->add_widget (*primary_clock->right_btn()); in setup_transport()
494 button_height_size_group->add_widget (*secondary_clock->right_btn()); in setup_transport()
520 clock1_size_group->add_widget (*primary_clock->right_btn()); in setup_transport()
524 clock2_size_group->add_widget (*secondary_clock->right_btn()); in setup_transport()
582 …transport_table.attach (*primary_clock->right_btn(), col + 1, col + 2, 1, 2 , FILL, SHRINK, hpaddi… in setup_transport()
591 …transport_table.attach (*secondary_clock->right_btn(), col + 1, col + 2, 1, 2 , FILL, SHRINK, hpad… in setup_transport()
594 secondary_clock->right_btn()->set_no_show_all (true); in setup_transport()
H A Daudio_clock.h93 ArdourWidgets::ArdourButton* right_btn () { return &_right_btn; } in right_btn() function
/dports/devel/cppurses/CPPurses-0.3-5-g342a389/include/cppurses/widget/widgets/
H A Dcycle_stack.hpp34 Push_button& right_btn{this->make_child<Push_button>("⏵")}; member