Home
last modified time | relevance | path

Searched refs:docView (Results 1 – 25 of 85) sorted by relevance

1234

/dports/graphics/aseprite/aseprite-1.2.9/src/app/
H A Dui_context.cpp72 return docView; in activeView()
86 if (m_lastSelectedView == docView || in setActiveView()
87 (docView && docView->isPreview())) in setActiveView()
90 if (docView) { in setActiveView()
97 current_editor = (docView ? docView->editor(): nullptr); in setActiveView()
114 m_lastSelectedView = docView; in setActiveView()
130 setActiveView(docView); in onSetActiveDocument()
147 return docView; in getFirstDocView()
163 docViews.push_back(docView); in getAllDocViews()
175 if (docView->editor()) in getAllEditorsIncludingPreview()
[all …]
/dports/devel/aws-sdk-cpp/aws-sdk-cpp-1.9.129/aws-cpp-sdk-identity-management/source/auth/
H A DPersistentCognitoIdentityProvider_JsonFileImpl.cpp154 auto docView = jsonDoc.View(); in LoadAndParseDoc() local
156 if (docView.ValueExists(m_identityPoolId)) in LoadAndParseDoc()
158 auto identityNode = docView.GetObject(m_identityPoolId); in LoadAndParseDoc()
174 auto docView = jsonDoc.View(); in HasIdentityId() local
175 if (docView.ValueExists(m_identityPoolId)) in HasIdentityId()
194 auto docView = jsonDoc.View(); in HasLogins() local
195 if (docView.ValueExists(m_identityPoolId)) in HasLogins()
218 auto docView = jsonDoc.View(); in GetIdentityId() local
219 if (docView.ValueExists(m_identityPoolId)) in GetIdentityId()
240 auto docView = jsonDoc.View(); in GetLogins() local
[all …]
/dports/graphics/graphos/Graphos-0.7/
H A DGRDocument.m55 [sv setDocumentView: docView];
57 [cv scrollToPoint: NSMakePoint(0, NSMaxY([docView bounds]))];
61 [docView createObjectsFromDictionary: documentDictionary];
66 [docView updatePrintInfo: p];
82 [docView createObjectsFromDictionary: documentDictionary];
90 return [[[docView objectDictionary] description] dataUsingEncoding: NSASCIIStringEncoding];
117 - (GRDocView *)docView
119 return docView;
127 op = [NSPrintOperation printOperationWithView:docView
142 [docView updatePrintInfo: printInfo];
H A DGRDocument.h30 IBOutlet GRDocView *docView; variable
35 - (GRDocView *)docView;
/dports/deskutils/coolreader/coolreader-cr3.2.55/cr3qt/src/
H A Daddbookmarkdlg.cpp7 bool AddBookmarkDialog::editBookmark( QWidget * parent, CR3View * docView, CRBookmark * bm ) in editBookmark() argument
9 AddBookmarkDialog * dlg = new AddBookmarkDialog( parent, docView, bm ); in editBookmark()
21 AddBookmarkDialog::AddBookmarkDialog(QWidget *parent, CR3View * docView, CRBookmark * bm ) : in AddBookmarkDialog() argument
24 _docview( docView ), in AddBookmarkDialog()
32 _bm = docView->createBookmark(); in AddBookmarkDialog()
63 bool AddBookmarkDialog::showDlg( QWidget * parent, CR3View * docView ) in showDlg() argument
65 AddBookmarkDialog * dlg = new AddBookmarkDialog( parent, docView, NULL ); in showDlg()
H A Dtocdlg.cpp41 bool TocDlg::showDlg( QWidget * parent, CR3View * docView ) in showDlg() argument
43 LVTocItem * root = docView->getToc(); in showDlg()
46 TocDlg * dlg = new TocDlg( parent, docView ); in showDlg()
51 TocDlg::TocDlg(QWidget *parent, CR3View * docView) : in TocDlg() argument
53 m_ui(new Ui::TocDlg), m_docview(docView) in TocDlg()
64 int currPage = docView->getCurPage(); in TocDlg()
H A Daddbookmarkdlg.h23 static bool showDlg( QWidget * parent, CR3View * docView );
24 static bool editBookmark( QWidget * parent, CR3View * docView, CRBookmark * bm );
27 explicit AddBookmarkDialog(QWidget *parent, CR3View * docView, CRBookmark * bm);
H A Dsearchdlg.cpp16 bool SearchDialog::showDlg( QWidget * parent, CR3View * docView ) in showDlg() argument
19 _instance = new SearchDialog( parent, docView ); in showDlg()
27 SearchDialog::SearchDialog(QWidget *parent, CR3View * docView) : in SearchDialog() argument
30 _docview( docView ) in SearchDialog()
H A Drecentdlg.cpp15 RecentBooksDlg::RecentBooksDlg(QWidget *parent, CR3View * docView ) : in RecentBooksDlg() argument
18 m_docview(docView) in RecentBooksDlg()
32 LVDocView* lvdocview = docView->getDocView(); in RecentBooksDlg()
83 bool RecentBooksDlg::showDlg( QWidget * parent, CR3View * docView ) in showDlg() argument
85 RecentBooksDlg * dlg = new RecentBooksDlg( parent, docView ); in showDlg()
H A Dtocdlg.h24 static bool showDlg( QWidget * parent, CR3View * docView );
27 explicit TocDlg(QWidget *parent, CR3View * docView );
H A Dsearchdlg.h16 static bool showDlg( QWidget * parent, CR3View * docView );
19 SearchDialog(QWidget *parent, CR3View * docView);
H A Drecentdlg.h24 static bool showDlg( QWidget * parent, CR3View * docView );
26 explicit RecentBooksDlg(QWidget *parent, CR3View * docView );
H A Dbookmarklistdlg.h24 static bool showDlg( QWidget * parent, CR3View * docView );
27 explicit BookmarkListDialog(QWidget *parent, CR3View * docView);
H A Dfilepropsdlg.h23 static bool showDlg( QWidget * parent, CR3View * docView );
31 explicit FilePropsDialog(QWidget *parent, CR3View * docView );
H A Dbookmarklistdlg.cpp23 BookmarkListDialog::BookmarkListDialog(QWidget *parent, CR3View * docView ) : in BookmarkListDialog() argument
26 _docview(docView) in BookmarkListDialog()
109 bool BookmarkListDialog::showDlg( QWidget * parent, CR3View * docView ) in showDlg() argument
111 BookmarkListDialog * dlg = new BookmarkListDialog( parent, docView ); in showDlg()
/dports/graphics/aseprite/aseprite-1.2.9/src/app/commands/
H A Dcmd_close_file.cpp74 DocView* docView = dynamic_cast<DocView*>(view); in onExecute() local
75 if (docView) in onExecute()
76 docViews.push_back(docView); in onExecute()
79 for (auto docView : docViews) { in onExecute() local
80 if (!workspace->closeView(docView, m_quitting)) in onExecute()
/dports/graphics/gwenview/gwenview-21.12.3/lib/documentview/
H A Dbirdeyeview.cpp101 BirdEyeView::BirdEyeView(DocumentView *docView) in BirdEyeView() argument
102 : QGraphicsWidget(docView) in BirdEyeView()
106 d->mDocView = docView; in BirdEyeView()
123 …connect(docView->document().data(), &Document::metaInfoUpdated, this, &BirdEyeView::slotZoomOrSize… in BirdEyeView()
124 connect(docView, &DocumentView::zoomChanged, this, &BirdEyeView::slotZoomOrSizeChanged); in BirdEyeView()
125 connect(docView, &DocumentView::zoomToFitChanged, this, &BirdEyeView::slotZoomOrSizeChanged); in BirdEyeView()
126 connect(docView, &DocumentView::positionChanged, this, &BirdEyeView::slotPositionChanged); in BirdEyeView()
/dports/graphics/cenon/Cenon/InspectorPanel.subproj/
H A DIPAllLayers.m92 [moveMatrix selectCellAtRow:[docView indexOfSelectedLayer] column:0];
117 docView = [window docView];
120 [self setLayerList:(docView) ? [docView layerList] : [self currentLayerList]];
231 [docView selectLayerAtIndex:row-1];
233 [[docView slayList] removeObjectAtIndex:row];
242 [[docView document] setDirty:YES];
243 [docView drawAndDisplay];
247 object:docView /*layerObject*/];
351 object:docView /*layerObject*/];
H A DIPAllAcc.h52 id docView; // temporary current document view variable
66 - (id)docView;
H A DIPAllAcc.m159 [docView release];
160 docView = [aView retain];
162 - docView
164 return (docView) ? (docView) : [[(App*)NSApp currentDocument] documentView];
/dports/games/nextgo/NeXTGo-3.0/
H A DGoApp.m639 [docView setString:[[docView string] stringByAppendingString:[NSString stringWithCString:s]]];
641 [docView selectAll:docView];
643 [docView scrollRangeToVisible:[docView selectedRange]];
656 [docView selectAll:docView];
658 [docView scrollRangeToVisible:[docView selectedRange]];
946 aString = [docView string];
948 [docView setFont:IGSfont];
950 [docView selectAll:docView];
952 [docView scrollRangeToVisible:[docView selectedRange]];
1168 [docView selectAll:nil];
[all …]
/dports/editors/libreoffice6/libreoffice-6.4.7.2/ios/LibreOfficeLight/LibreOfficeLight/
H A DDocumentController.swift413 let docView = DocumentTiledView(frame: frameToUse, document: doc, scale: 1.0) in setDocument() variable
415 self.scrollView.addSubview(docView) in setDocument()
416 self.scrollView.contentSize = docView.frame.size in setDocument()
417 self.documentView = docView in setDocument()
420 let overlay = DocumentOverlaysView(docTiledView: docView) in setDocument()
421 docView.addSubview(overlay) in setDocument()
/dports/cad/ldview/ldview-4.4/MacOSX/LDView/
H A DGroupOptionUI.mm102 [docView addSubview:check];
107 [docView addSubview:label];
110 [docView addSubview:box];
112 [docView addSubview:resetButton];
195 NSArray *views = [docView subviews];
H A DOptions.mm120 [docView setFrameSize:size];
129 [docView setFrameSize:size];
223 while ([[docView subviews] count] > 0)
225 [[[docView subviews] lastObject] removeFromSuperview];
300 …NSPoint scrollPoint = [docView convertPoint:NSMakePoint(0.0f, docVisibleRect.origin.y + delta) toV…
309 …NSPoint scrollPoint = [docView convertPoint:NSMakePoint(0.0f, docVisibleRect.origin.y + delta) toV…
364 - (id)docView
366 return docView;
H A DOptions.h17 IBOutlet NSView *docView; variable
30 - (id)docView;

1234