Home
last modified time | relevance | path

Searched refs:endButton (Results 1 – 7 of 7) sorted by relevance

/dports/games/jin/jin-2.14.1/src/free/jin/board/
H A DExaminedGameButtonPanel.java99 protected JButton endButton; field in ExaminedGameButtonPanel
142 endButton = createEndGameButton(plugin, game); in createComponents()
228 add(endButton); in addComponents()
246 else if (source==endButton){ in actionPerformed()
/dports/graphics/cfdg/cfdg-3.3_1/src-net/
H A DColorCalculator.h81 private: System::Windows::Forms::Button^ endButton;
113 this->endButton = (gcnew System::Windows::Forms::Button()); in InitializeComponent()
209 …this->endButton->Image = (cli::safe_cast<System::Drawing::Image^ >(resources->GetObject(L"endButt… in InitializeComponent()
210 this->endButton->Location = System::Drawing::Point(316, 389); in InitializeComponent()
211 this->endButton->Name = L"endButton"; in InitializeComponent()
212 this->endButton->Size = System::Drawing::Size(37, 51); in InitializeComponent()
213 this->endButton->TabIndex = 15; in InitializeComponent()
214 this->endButton->UseVisualStyleBackColor = true; in InitializeComponent()
311 this->Controls->Add(this->endButton); in InitializeComponent()
H A DColorCalculator.cpp54 endButton->Click += sel; in MoreInitialization()
70 buttonHandler(endButton, nullptr);
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/android/features/tab_ui/java/src/org/chromium/chrome/browser/tasks/tab_management/
H A DTabListViewBinder.java116 ImageView endButton = selectableTabListView.findViewById(R.id.end_button); in bindSelectableListTab() local
117 endButton.setOnClickListener(onClickListener); in bindSelectableListTab()
118 endButton.setOnLongClickListener(onLongClickListener); in bindSelectableListTab()
/dports/games/maxr/maxr-0.2.9/src/ui/graphical/game/
H A Dhud.cpp50endButton = addChild (std::make_unique<cPushButton> (cPosition (391, 4), ePushButtonType::HudEnd, … in cHud()
51 endButton->addClickShortcut (KeysList.keyEndTurn); in cHud()
52 signalConnectionManager.connect (endButton->clicked, [&]() { endClicked(); }); in cHud()
204 return endButton->isAt (position); in isAt()
335 endButton->lock(); in lockEndButton()
341 endButton->unlock(); in unlockEndButton()
H A Dhud.h171 cPushButton* endButton; variable
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/android/features/tab_ui/javatests/src/org/chromium/chrome/browser/tasks/tab_management/
H A DTabListViewHolderTest.java276 ImageView endButton = mSelectableTabListView.findViewById(R.id.end_button); in testSelected() local
277 Assert.assertEquals(1, endButton.getBackground().getLevel()); in testSelected()
278 Assert.assertNotNull(endButton.getDrawable()); in testSelected()
282 Assert.assertEquals(0, endButton.getBackground().getLevel()); in testSelected()
283 Assert.assertEquals(0, endButton.getDrawable().getAlpha()); in testSelected()