Home
last modified time | relevance | path

Searched refs:m_view (Results 251 – 275 of 2283) sorted by relevance

1...<<11121314151617181920>>...92

/dports/devel/codeblocks/codeblocks-20.03/src/plugins/contrib/NassiShneiderman/
H A DNassiDiagramWindow.cpp56 m_view(view), in BEGIN_EVENT_TABLE()
65 dc.SetFont(m_view->GetSourceFont()); in BEGIN_EVENT_TABLE()
110 m_view->ZoomIn(); in OnMouseWheel()
112 m_view->ZoomOut(); in OnMouseWheel()
144 m_view->DrawDiagram(&dc); in Draw()
169 m_view->OnChar(event); in OnChar()
174 m_view->OnKeyDown(event); in OnKeyDown()
196 m_view->OnMouseLeftUp(event, pos); in OnMouseLeftUp()
220 m_view->OnMouseRightUp(event, pos); in OnMouseRightUp()
298 m_view->OnDragLeave(); in OnDragLeave()
[all …]
/dports/print/scribus-devel/scribus-1.5.7/scribus/
H A Dcanvasmode_objimport.cpp98 m_view->MidButt = false; in activate()
103 m_view->update(); in activate()
112 m_view->setRedrawMarkerShown(false); in deactivate()
152 m_view->HaveSelRect = false; in mousePressEvent()
157 m_view->registerMousePress(m->globalPos()); in mousePressEvent()
166 m_view->MidButt = true; in mousePressEvent()
168 m_view->DrawNew(); in mousePressEvent()
189 m_view->contentsDropEvent(&dropEvent); in mouseReleaseEvent()
202 m_view->requestMode(modeNormal); in mouseReleaseEvent()
211 m_view->MidButt = false; in mouseReleaseEvent()
[all …]
/dports/graphics/digikam/digikam-7.4.0/core/libs/widgets/itemview/
H A Ditemdelegateoverlay.cpp47 m_view (nullptr), in ItemDelegateOverlay()
74 if (m_view) in setView()
77 m_view, SLOT(update(QModelIndex))); in setView()
80 m_view = view; in setView()
82 if (m_view) in setView()
85 m_view, SLOT(update(QModelIndex))); in setView()
91 return m_view; in view()
220 connect(m_view, SIGNAL(viewportEntered()), in setActive()
228 if (m_view) in setActive()
256 return m_view->viewport(); in parentWidget()
[all …]
/dports/cad/ktechlab/ktechlab-0.50.0/src/
H A Dtextview.cpp53 m_view = textDocument->createKateView(this); in TextView()
54 m_view->insertChildClient(this); in TextView()
147 m_view->setXMLFile( "ktechlabkateui.rc" ); in TextView()
167 m_layout->insertWidget( 0, m_view ); in TextView()
269 if (!m_view->selection()) return; in cut()
271 clipboard->setText( m_view->document()->text( m_view->selectionRange() ) ); in cut()
272 m_view->document()->removeText(m_view->selectionRange()); in cut()
277 if (!m_view->selection()) return; in copy()
279 clipboard->setText( m_view->document()->text( m_view->selectionRange() ) ); in copy()
285 m_view->document()->insertText( m_view->cursorPosition(), clipboard->text()); in paste()
[all …]
/dports/games/knetwalk/knetwalk-21.12.3/src/
H A Dmainwindow.cpp77 m_view(new GameView(this)) in MainWindow()
79 connect(m_view, &GameView::gameOver, this, &MainWindow::gameOver); in MainWindow()
80 connect(m_view, &GameView::rotationStarted, this, &MainWindow::rotationStarted); in MainWindow()
102 setCentralWidget(m_view); in MainWindow()
143 connect(action, SIGNAL(triggered()), m_view->rootObject(), SLOT(unlockAll())); in setupActions()
154 connect(action, SIGNAL(triggered()), m_view->rootObject(), SLOT(kbGoLeft())); in setupActions()
159 connect(action, SIGNAL(triggered()), m_view->rootObject(), SLOT(kbGoUp())); in setupActions()
164 connect(action, SIGNAL(triggered()), m_view->rootObject(), SLOT(kbGoDown())); in setupActions()
215 m_view->startNewGame(size.width(), size.height(), (Wrapping)isWrapped); in startNewGame()
216 m_clickCount = -m_view->minimumMoves(); in startNewGame()
[all …]
/dports/x11-toolkits/wxgtk31/wxWidgets-3.1.5/src/generic/
H A Dtreelist.cpp826 m_view = NULL; in wxBEGIN_EVENT_TABLE()
862 delete m_view; in Create()
863 m_view = NULL; in Create()
885 parts.push_back(m_view); in GetCompositeWindowParts()
950 return m_view ? m_view->GetColumnCount() : 0u; in GetColumnCount()
957 if ( !m_view->DeleteColumn(m_view->GetColumn(col)) ) in DeleteColumn()
972 m_view->ClearColumns(); in ClearColumns()
1230 m_view->SelectAll(); in SelectAll()
1237 m_view->UnselectAll(); in UnselectAll()
1446 if ( m_view ) in OnSize()
[all …]
/dports/devel/kf5-ktexteditor/ktexteditor-5.89.0/src/vimode/modes/
H A Dmodebase.cpp1005 Q_EMIT m_view->viewModeChanged(m_view, m_view->viewMode()); in startNormalMode()
1013 m_view->doc()->setUndoMergeAllEdits(true); in startInsertMode()
1014 Q_EMIT m_view->viewModeChanged(m_view, m_view->viewMode()); in startInsertMode()
1023 Q_EMIT m_view->viewModeChanged(m_view, m_view->viewMode()); in startReplaceMode()
1040 Q_EMIT m_view->viewModeChanged(m_view, m_view->viewMode()); in startVisualMode()
1054 Q_EMIT m_view->viewModeChanged(m_view, m_view->viewMode()); in startVisualBlockMode()
1068 Q_EMIT m_view->viewModeChanged(m_view, m_view->viewMode()); in startVisualLineMode()
1080 m_infoMessage->setView(m_view); in error()
1092 m_infoMessage->setView(m_view); in message()
1228 QPoint current_point = m_view->mapToGlobal(m_view->pos()); in switchView()
[all …]
/dports/devel/kf5-ktexteditor/ktexteditor-5.89.0/src/script/
H A Dkatescriptaction.cpp26 , m_view(view) in KateScriptAction()
41 m_view->currentInputMode()->launchInteractiveCommand(m_command + QLatin1Char(' ')); in exec()
46 p->exec(m_view, m_command, msg); in exec()
55 , m_view(view) in KateScriptActionMenu()
83 KXMLGUIFactory *viewFactory = m_view->factory(); in repopulate()
85 viewFactory->removeClient(m_view); in repopulate()
113m_view->actionCollection()->addAction(QLatin1String("tools_scripts_") + category, m->menuAction()); in repopulate()
118 QAction *a = new KateScriptAction(cmd, action, m_view); in repopulate()
120 m_view->actionCollection()->addAction(QLatin1String("tools_scripts_") + cmd, a); in repopulate()
123 m_view->actionCollection()->setDefaultShortcut(a, shortcut); in repopulate()
[all …]
/dports/devel/kdevelop/kdevelop-21.12.3/kdevplatform/debugger/variable/
H A Dvariabletooltip.cpp95 m_view = new AsyncTreeView(m_model, m_proxy, this); in VariableToolTip()
97 m_view->setModel(m_proxy); in VariableToolTip()
98 m_view->header()->resizeSection(0, 150); in VariableToolTip()
99 m_view->header()->resizeSection(1, 90); in VariableToolTip()
100 m_view->setSelectionBehavior(QAbstractItemView::SelectRows); in VariableToolTip()
102 m_view->setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff); in VariableToolTip()
104 l->addWidget(m_view); in VariableToolTip()
107 m_itemHeight = m_view->indexRowSizeHint(varIndex); in VariableToolTip()
108 connect(m_view->verticalScrollBar(), in VariableToolTip()
113 m_selection = m_view->selectionModel(); in VariableToolTip()
[all …]
/dports/graphics/digikam/digikam-7.4.0/core/libs/widgets/combo/
H A Dcomboboxutilities.cpp245 m_view = nullptr; in StayPoppedUpComboBox()
250 if (m_view) in installView()
257 m_view = view; in installView()
261 setView(m_view); in installView()
271 m_view->installEventFilter(this); in installView()
282 if ((o == m_view) || (o == m_view->viewport())) in eventFilter()
290 if (m_view->isVisible() && m_view->rect().contains(m->pos())) in eventFilter()
292 if (o == m_view) in eventFilter()
314 if (o != m_view) in eventFilter()
385 return static_cast<QTreeView*>(m_view); in view()
[all …]
/dports/games/trenchbroom/TrenchBroom-ed46601/common/src/View/
H A DTextureBrowser.cpp52 return m_view->selectedTexture(); in selectedTexture()
56 m_view->setSelectedTexture(selectedTexture); in setSelectedTexture()
60 m_view->setSortOrder(sortOrder); in setSortOrder()
74 m_view->setGroup(group); in setGroup()
79 m_view->setHideUnused(hideUnused); in setHideUnused()
84 m_view->setFilterText(filterText); in setFilterText()
92 m_view->setSortOrder(sortOrder); in OnSortOrderChanged()
243 m_view->Refresh(); in preferenceDidChange()
247 if (m_view != NULL) { in reload()
248 m_view->clear(); in reload()
[all …]
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebKit/qt/tests/benchmarks/webgl/
H A Dtst_webgl.cpp46 QScopedPointer<GraphicsView> m_view; member in tst_WebGlPerformance
83 m_view.reset(new GraphicsView); in init()
84 m_view->showMaximized(); in init()
85 QTest::qWaitForWindowShown(m_view.data()); in init()
90 m_view.reset(); in cleanup()
115 m_view->m_webView->load(QUrl(QLatin1String("qrc:///testcases/10000_triangles.html"))); in benchmarkFrameRenderingOnImage()
116 const bool pageLoaded = waitForSignal(m_view->m_webView, SIGNAL(loadFinished(bool))); in benchmarkFrameRenderingOnImage()
120 QImage target(m_view->size(), format); in benchmarkFrameRenderingOnImage()
123 m_view->render(&painter); in benchmarkFrameRenderingOnImage()
/dports/graphics/wdune/wdune-1.926/src/
H A DMFStringItem.cpp36 return new SFStringItem(m_view); in CreateSFItem()
46 int size = m_view->GetItemHeight() - 1; in Draw()
51 int bx = x + m_view->GetItemWidth() - size; in Draw()
52 swDraw3DRect(dc, m_view->GetWindow(), bx, y, size, size); in Draw()
53 swSetFGColor(dc, swGetWindowColor(m_view->GetWindow(), SW_COLOR_TEXT)); in Draw()
54 swDrawText(dc, bx + 2, y + m_view->GetItemHeight() - 3, "..."); in Draw()
76 m_children.insert(new FieldViewItem(m_view), 0); in StartEditing()
106 int width = m_view->GetItemWidth(); in OnMouseDown()
107 int buttonSize = m_view->GetItemHeight() - 1; in OnMouseDown()
/dports/science/py-pymol/pymol-open-source-2.4.0/layer1/
H A DScene.cpp699 I->m_view.m_pos[0], I->m_view.m_pos[1], I->m_view.m_pos[2], in SceneToViewElem()
804 I->m_view.m_pos[0], I->m_view.m_pos[1], I->m_view.m_pos[2], in SceneFromViewElem()
993 I->m_view.m_pos[0], I->m_view.m_pos[1], I->m_view.m_pos[2], in SceneGetView()
1076 I->m_view.m_pos[0], I->m_view.m_pos[1], I->m_view.m_pos[2], in SceneSetView()
1119 I->m_view.m_pos[0], I->m_view.m_pos[1], I->m_view.m_pos[2], in ResetFovWidth()
1136 I->m_view.m_pos[0] = I->m_view.m_pos[0] * scale; in ResetFovWidth()
1147 I->m_view.m_pos[0], I->m_view.m_pos[1], I->m_view.m_pos[2], in ResetFovWidth()
2497 I->m_view.m_pos[0], I->m_view.m_pos[1], I->m_view.m_pos[2], in SceneWindowSphere()
2536 I->m_view.m_pos[0], I->m_view.m_pos[1], I->m_view.m_pos[2], in SceneWindowSphere()
7088 glTranslatef(I->m_view.m_pos[0], I->m_view.m_pos[1], I->m_view.m_pos[2]); in ScenePrepareMatrix()
[all …]
/dports/graphics/poppler-qt5/poppler-21.12.0/qt5/demos/
H A Doptcontent.cpp27 m_view = new QTreeView(this); in OptContentDock()
28 setWidget(m_view); in OptContentDock()
30 m_view->setHorizontalScrollMode(QAbstractItemView::ScrollPerPixel); in OptContentDock()
49 m_view->setModel(document()->optionalContentModel()); in fillInfo()
50 connect(m_view->model(), &QAbstractItemModel::dataChanged, this, &OptContentDock::reloadImage); in fillInfo()
51 m_view->expandToDepth(1); in fillInfo()
56 m_view->setModel(nullptr); in documentClosed()
/dports/graphics/poppler/poppler-21.12.0/qt5/demos/
H A Doptcontent.cpp27 m_view = new QTreeView(this); in OptContentDock()
28 setWidget(m_view); in OptContentDock()
30 m_view->setHorizontalScrollMode(QAbstractItemView::ScrollPerPixel); in OptContentDock()
49 m_view->setModel(document()->optionalContentModel()); in fillInfo()
50 connect(m_view->model(), &QAbstractItemModel::dataChanged, this, &OptContentDock::reloadImage); in fillInfo()
51 m_view->expandToDepth(1); in fillInfo()
56 m_view->setModel(nullptr); in documentClosed()
/dports/graphics/poppler/poppler-21.12.0/qt6/demos/
H A Doptcontent.cpp27 m_view = new QTreeView(this); in OptContentDock()
28 setWidget(m_view); in OptContentDock()
30 m_view->setHorizontalScrollMode(QAbstractItemView::ScrollPerPixel); in OptContentDock()
49 m_view->setModel(document()->optionalContentModel()); in fillInfo()
50 connect(m_view->model(), &QAbstractItemModel::dataChanged, this, &OptContentDock::reloadImage); in fillInfo()
51 m_view->expandToDepth(1); in fillInfo()
56 m_view->setModel(nullptr); in documentClosed()
/dports/graphics/poppler-glib/poppler-21.12.0/qt6/demos/
H A Doptcontent.cpp27 m_view = new QTreeView(this); in OptContentDock()
28 setWidget(m_view); in OptContentDock()
30 m_view->setHorizontalScrollMode(QAbstractItemView::ScrollPerPixel); in OptContentDock()
49 m_view->setModel(document()->optionalContentModel()); in fillInfo()
50 connect(m_view->model(), &QAbstractItemModel::dataChanged, this, &OptContentDock::reloadImage); in fillInfo()
51 m_view->expandToDepth(1); in fillInfo()
56 m_view->setModel(nullptr); in documentClosed()
/dports/graphics/poppler-glib/poppler-21.12.0/qt5/demos/
H A Doptcontent.cpp27 m_view = new QTreeView(this); in OptContentDock()
28 setWidget(m_view); in OptContentDock()
30 m_view->setHorizontalScrollMode(QAbstractItemView::ScrollPerPixel); in OptContentDock()
49 m_view->setModel(document()->optionalContentModel()); in fillInfo()
50 connect(m_view->model(), &QAbstractItemModel::dataChanged, this, &OptContentDock::reloadImage); in fillInfo()
51 m_view->expandToDepth(1); in fillInfo()
56 m_view->setModel(nullptr); in documentClosed()
/dports/graphics/poppler-qt5/poppler-21.12.0/qt6/demos/
H A Doptcontent.cpp27 m_view = new QTreeView(this); in OptContentDock()
28 setWidget(m_view); in OptContentDock()
30 m_view->setHorizontalScrollMode(QAbstractItemView::ScrollPerPixel); in OptContentDock()
49 m_view->setModel(document()->optionalContentModel()); in fillInfo()
50 connect(m_view->model(), &QAbstractItemModel::dataChanged, this, &OptContentDock::reloadImage); in fillInfo()
51 m_view->expandToDepth(1); in fillInfo()
56 m_view->setModel(nullptr); in documentClosed()
/dports/graphics/poppler-utils/poppler-21.12.0/qt5/demos/
H A Doptcontent.cpp27 m_view = new QTreeView(this); in OptContentDock()
28 setWidget(m_view); in OptContentDock()
30 m_view->setHorizontalScrollMode(QAbstractItemView::ScrollPerPixel); in OptContentDock()
49 m_view->setModel(document()->optionalContentModel()); in fillInfo()
50 connect(m_view->model(), &QAbstractItemModel::dataChanged, this, &OptContentDock::reloadImage); in fillInfo()
51 m_view->expandToDepth(1); in fillInfo()
56 m_view->setModel(nullptr); in documentClosed()
/dports/graphics/poppler-utils/poppler-21.12.0/qt6/demos/
H A Doptcontent.cpp27 m_view = new QTreeView(this); in OptContentDock()
28 setWidget(m_view); in OptContentDock()
30 m_view->setHorizontalScrollMode(QAbstractItemView::ScrollPerPixel); in OptContentDock()
49 m_view->setModel(document()->optionalContentModel()); in fillInfo()
50 connect(m_view->model(), &QAbstractItemModel::dataChanged, this, &OptContentDock::reloadImage); in fillInfo()
51 m_view->expandToDepth(1); in fillInfo()
56 m_view->setModel(nullptr); in documentClosed()
/dports/devel/emscripten/emscripten-2.0.3/tests/third_party/poppler/qt4/demos/
H A Doptcontent.cpp28 m_view = new QTreeView(this); in OptContentDock()
29 setWidget(m_view); in OptContentDock()
31 m_view->setHorizontalScrollMode(QAbstractItemView::ScrollPerPixel); in OptContentDock()
53 m_view->setModel(document()->optionalContentModel()); in fillInfo()
54 …connect(m_view->model(), SIGNAL(dataChanged(QModelIndex, QModelIndex)), this, SLOT(reloadImage())); in fillInfo()
55 m_view->expandToDepth(1); in fillInfo()
60 m_view->setModel(0); in documentClosed()
/dports/editors/calligraplan/calligraplan-3.3.0/src/libs/ui/reportsgenerator/
H A DReportsGeneratorView.cpp223 m_view = new QTreeView(this); in ReportsGeneratorView()
230 m_view->setModel(m); in ReportsGeneratorView()
232 m_view->setRootIsDecorated(false); in ReportsGeneratorView()
233 m_view->setAlternatingRowColors(true); in ReportsGeneratorView()
238 l->addWidget(m_view); in ReportsGeneratorView()
255 m_view->setItemDelegateForColumn(2, new FileItemDelegate(m_view)); in ReportsGeneratorView()
257 m_view->setItemDelegateForColumn(3, new FileNameExtensionDelegate(m_view)); in ReportsGeneratorView()
259 m_view->header()->resizeSection(3, 12); in ReportsGeneratorView()
386 m_view->edit(idx); in slotAddReport()
484 QHeaderView *h = m_view->header(); in loadContext()
[all …]
/dports/misc/kwordquiz/kwordquiz-21.12.3/src/
H A Dkwqcommands.cpp41 m_view = view; in KWQUndoCommand()
53 id.height = m_view->rowHeight(index.row()); in KWQUndoCommand()
61 m_view->selectionModel()->clear(); in undo()
208 m_view = view; in KWQCommandSort()
216 m_view->setUpdatesEnabled(false); in undo()
219 m_view->setUpdatesEnabled(true); in undo()
225 int currentRow = m_view->currentIndex().row(); in redo()
229m_view->horizontalHeader()->setSortIndicator(m_column, m_view->horizontalHeader()->sortIndicatorOr… in redo()
230 m_view->setCurrentIndex(m_view->model()->index(currentRow, currentColumn, QModelIndex())); in redo()
236 m_view = view; in KWQCommandShuffle()
[all …]

1...<<11121314151617181920>>...92