Home
last modified time | relevance | path

Searched refs:helpFile (Results 1 – 25 of 320) sorted by relevance

12345678910>>...13

/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/common/
H A Dsearchhelpfilefullpath.cpp35 wxString helpFile; in SearchHelpFileFullPath() local
94 helpFile = docPaths.FindValidPath( aBaseName + ".html" ); in SearchHelpFileFullPath()
96 if( !helpFile.IsEmpty() ) in SearchHelpFileFullPath()
99 helpFile = "file://" + helpFile; in SearchHelpFileFullPath()
105 helpFile = docPaths.FindValidPath( aBaseName + ".pdf" ); in SearchHelpFileFullPath()
107 if( !helpFile.IsEmpty() ) in SearchHelpFileFullPath()
111 return helpFile; in SearchHelpFileFullPath()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Windows.Forms/System.Windows.Forms/
H A DHelp.cs84 private static void ShowHelpTopic (string helpFile, string helpTopic) in ShowHelpTopic() argument
86 if (helpFile == null) in ShowHelpTopic()
88 if (helpFile == String.Empty) in ShowHelpTopic()
92 helpFile = helpFile.Replace (@"\", Path.DirectorySeparatorChar.ToString ()); in ShowHelpTopic()
95 string arguments = String.Format ("\"{0}\"", helpFile); in ShowHelpTopic()
100 arguments = String.Format ("\"{0}::{1}\"", helpFile, helpTopic); in ShowHelpTopic()
/dports/lang/tclX/tclx8.4/library/
H A Dbuildhelp.tcl280 if [file exists $helpFile] {
281 error "Help file already exists: $helpFile"
283 EnsureDirs $helpFile
307 set helpFH [open $helpFile w]
315 chmod a-w,a+r $helpFile
372 set helpFile "$helpDir/$helpName"
373 if {[file exists $helpFile]} {
374 error "Help file already exists: $helpFile"
376 EnsureDirs $helpFile
380 set helpFH [open $helpFile w]
[all …]
/dports/games/xboard-devel/xboard-f49e7e1/winboard/
H A Dhelp.c33 HtmlHelp( HWND hwnd, LPCSTR helpFile, UINT action, DWORD_PTR data ) in HtmlHelp() argument
44 f = fopen(helpFile, "r"); in HtmlHelp()
64 snprintf(buf, sizeof(buf)/sizeof(buf[0]),"Hh.exe %s", helpFile); in HtmlHelp()
82 MyHelp(HWND hwnd, LPSTR helpFile, UINT action, DWORD_PTR data) in MyHelp() argument
90 f = fopen(helpFile, "r"); in MyHelp()
98 return WinHelp(hwnd, helpFile, action, data); in MyHelp()
/dports/games/xboard/xboard-4.9.1/winboard/
H A Dhelp.c33 HtmlHelp( HWND hwnd, LPCSTR helpFile, UINT action, DWORD_PTR data ) in HtmlHelp() argument
44 f = fopen(helpFile, "r"); in HtmlHelp()
64 snprintf(buf, sizeof(buf)/sizeof(buf[0]),"Hh.exe %s", helpFile); in HtmlHelp()
82 MyHelp(HWND hwnd, LPSTR helpFile, UINT action, DWORD_PTR data) in MyHelp() argument
90 f = fopen(helpFile, "r"); in MyHelp()
98 return WinHelp(hwnd, helpFile, action, data); in MyHelp()
/dports/devel/jna/jna-5.7.0/contrib/platform/src/com/sun/jna/platform/win32/COM/
H A DCOMInvokeException.java38 private final String helpFile; field in COMInvokeException
84 this.helpFile = null; in COMInvokeException()
112 String description, Integer helpContext, String helpFile, in COMInvokeException() argument
118 this.helpFile = helpFile; in COMInvokeException()
164 return helpFile; in getHelpFile()
H A DTypeLibUtil.java74 private String helpFile; field in TypeLibUtil
124 this.helpFile = documentation.getHelpFile(); in initTypeLibInfo()
246 private String helpFile; field in TypeLibUtil.TypeLibDoc
261 String helpFile) { in TypeLibDoc() argument
265 this.helpFile = helpFile; in TypeLibDoc()
301 return helpFile; in getHelpFile()
547 return helpFile; in getHelpFile()
/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/common/tool/
H A Dcommon_control.cpp186 wxString helpFile; in ShowHelp() local
211 helpFile = SearchHelpFileFullPath( name ); in ShowHelp()
213 if( !helpFile.IsEmpty() ) in ShowHelp()
217 if( !helpFile ) in ShowHelp()
228 helpFile = baseUrl + names[0] + "/"; in ShowHelp()
235 helpFile = SearchHelpFileFullPath( base_name ); in ShowHelp()
237 if( !helpFile ) in ShowHelp()
248 helpFile = baseUrl + base_name + "/"; in ShowHelp()
252 GetAssociatedDocument( m_frame, helpFile, &m_frame->Prj() ); in ShowHelp()
/dports/games/manaplus/manaplus-2.1.3.17/src/gui/windows/
H A Dhelpwindow.cpp117 const std::string helpFile = link; // NOLINT in handleLink() local
118 loadHelp(helpFile); in handleLink()
126 void HelpWindow::loadHelp(const std::string &helpFile) in loadHelp() argument
128 if (!checkPath(helpFile)) in loadHelp()
132 loadFile(helpFile); in loadHelp()
139 void HelpWindow::loadHelpSimple(const std::string &helpFile) in loadHelpSimple() argument
141 if (!checkPath(helpFile)) in loadHelpSimple()
144 loadFile(helpFile); in loadHelpSimple()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.swt/bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/ole/win32/
H A DITypeInfo.java25 …mentation(int index, String[] name, String[] docString, int[] pdwHelpContext, String[] helpFile ) { in GetDocumentation() argument
31 if (helpFile != null) pBstrHelpFile = new long[1]; in GetDocumentation()
59 if (helpFile != null && pBstrHelpFile[0] != 0) { in GetDocumentation()
65 helpFile[0] = new String(buffer); in GetDocumentation()
66 int subindex = helpFile[0].indexOf("\0"); in GetDocumentation()
68 helpFile[0] = helpFile[0].substring(0, subindex); in GetDocumentation()
/dports/misc/lv/lv-f7ba677/src/
H A Dconf.c410 #define helpFile (*lvHelpFile) in ConfInit() macro
417 helpFile = Malloc( strlen( argv[ 0 ] ) + strlen( LV_HELP ) + 1 ); in ConfInit()
418 strcpy( helpFile, argv[ 0 ] ); in ConfInit()
419 for( i = strlen( helpFile ) - 1 ; i >= 0 ; i-- ){ in ConfInit()
420 if( '/' == helpFile[ i ] || '\\' == helpFile[ i ] ){ in ConfInit()
426 helpFile[ i ] = NULL; in ConfInit()
427 strcat( helpFile, LV_HELP ); in ConfInit()
430 helpFile = Malloc( strlen( LV_HELP_PATH "/" LV_HELP ) + 1 ); in ConfInit()
431 strcpy( helpFile, LV_HELP_PATH "/" LV_HELP ); in ConfInit()
/dports/audio/vimpc/vimpc-0.09.2/src/window/
H A Dhelp.cpp190 std::ifstream helpFile(file.c_str()); in LoadHelpFile() local
192 if (helpFile.is_open() == true) in LoadHelpFile()
196 while (helpFile.eof() == false) in LoadHelpFile()
198 getline(helpFile, nextLine); in LoadHelpFile()
200 if (helpFile.eof() == false) in LoadHelpFile()
206 helpFile.close(); in LoadHelpFile()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/
H A DHtmlOptions.java122 private String helpFile = ""; field in HtmlOptions
252 if (!helpFile.isEmpty()) { in getSupportedOptions()
256 helpFile = args.get(0); in getSupportedOptions()
272 if (!helpFile.isEmpty()) { in getSupportedOptions()
467 if (!helpFile.isEmpty()) { in validateOptions()
468 DocFile help = DocFile.createFileForInput(config, helpFile); in validateOptions()
470 messages.error("doclet.File_not_found", helpFile); in validateOptions()
599 public String helpFile() { in helpFile() method in HtmlOptions
600 return helpFile; in helpFile()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/
H A DHtmlOptions.java122 private String helpFile = ""; field in HtmlOptions
257 if (!helpFile.isEmpty()) { in getSupportedOptions()
261 helpFile = args.get(0); in getSupportedOptions()
285 if (!helpFile.isEmpty()) { in getSupportedOptions()
480 if (!helpFile.isEmpty()) { in validateOptions()
481 DocFile help = DocFile.createFileForInput(config, helpFile); in validateOptions()
483 messages.error("doclet.File_not_found", helpFile); in validateOptions()
612 public String helpFile() { in helpFile() method in HtmlOptions
613 return helpFile; in helpFile()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/
H A DHtmlOptions.java128 private String helpFile = ""; field in HtmlOptions
258 if (!helpFile.isEmpty()) { in getSupportedOptions()
262 helpFile = args.get(0); in getSupportedOptions()
278 if (!helpFile.isEmpty()) { in getSupportedOptions()
473 if (!helpFile.isEmpty()) { in validateOptions()
474 DocFile help = DocFile.createFileForInput(config, helpFile); in validateOptions()
476 messages.error("doclet.File_not_found", helpFile); in validateOptions()
613 public String helpFile() { in helpFile() method in HtmlOptions
614 return helpFile; in helpFile()
/dports/x11-toolkits/py-wxPython40/wxPython-4.0.7/sip/cpp/
H A Dsip_htmlwxHtmlModalHelp.cpp46 const ::wxString* helpFile; in init_type_wxHtmlModalHelp() local
60 …st, sipUnused, "J8J1|J1i", sipType_wxWindow, &parent, sipType_wxString,&helpFile, &helpFileState, … in init_type_wxHtmlModalHelp()
65 sipCpp = new ::wxHtmlModalHelp(parent,*helpFile,*topic,style); in init_type_wxHtmlModalHelp()
67 sipReleaseType(const_cast< ::wxString *>(helpFile),sipType_wxString,helpFileState); in init_type_wxHtmlModalHelp()
/dports/math/scilab/scilab-6.1.1/scilab/modules/helptools/tests/unit_tests/
H A Djavahelp.tst15 helpFile = "SCI/modules/helptools/jar/scilab_" + supportedLanguages(kL) + "_help.jar";
16 assert_checktrue(isfile(helpFile));
17 [x, ierr] = fileinfo(helpFile);
H A Djavahelp.dia.ref11 helpFile = "SCI/modules/helptools/jar/scilab_" + supportedLanguages(kL) + "_help.jar";
12 assert_checktrue(isfile(helpFile));
13 [x, ierr] = fileinfo(helpFile);
/dports/sysutils/chezmoi/chezmoi-2.9.3/vendor/github.com/google/gops/vendor/github.com/go-ole/go-ole/
H A Dole.go33 helpFile string member
52 e.helpFile = "<nil>"
54 e.helpFile = BstrToString(e.bstrHelpFile)
97 e.wCode, e.source, e.description, e.helpFile, e.dwHelpContext, e.scode,
/dports/www/minio-client/mc-RELEASE.2021-12-10T00-14-28Z/vendor/github.com/go-ole/go-ole/
H A Dole.go33 helpFile string member
52 e.helpFile = "<nil>"
54 e.helpFile = BstrToString(e.bstrHelpFile)
97 e.wCode, e.source, e.description, e.helpFile, e.dwHelpContext, e.scode,
/dports/ftp/sftpgo/sftpgo-2.2.0/vendor/github.com/go-ole/go-ole/
H A Dole.go33 helpFile string member
52 e.helpFile = "<nil>"
54 e.helpFile = BstrToString(e.bstrHelpFile)
97 e.wCode, e.source, e.description, e.helpFile, e.dwHelpContext, e.scode,
/dports/devel/pear-phing/phing-2.6.1/util/
H A DFileUtils.php181 $helpFile = new PhingFile($file->getAbsolutePath());
187 $parentFile = $helpFile->getParent();
192 $helpFile = new PhingFile($parentFile);
196 $helpFile = new PhingFile($helpFile, $part);
200 return new PhingFile($helpFile->getAbsolutePath());
/dports/net-p2p/vuze/vuze-5.7.4.0_2/org/gudy/azureus2/ui/swt/welcome/
H A DWelcomeWindow.java272 String helpFile = null; in getWhatsNew() local
274 helpFile = MessageText.getString("window.welcome.file"); in getWhatsNew()
276 if (!helpFile.toLowerCase().startsWith(Constants.SF_WEB_SITE)) { in getWhatsNew()
281 helpFile = MessageText.getString("window.welcome.file"); in getWhatsNew()
284 stream = getClass().getResourceAsStream(helpFile); in getWhatsNew()
286 String helpFullPath = "/org/gudy/azureus2/internat/whatsnew/" + helpFile; in getWhatsNew()
293 sWhatsNew = "Welcome Window: Error loading resource: " + helpFile; in getWhatsNew()
306 final String url = helpFile; in getWhatsNew()
/dports/textproc/goldendict/goldendict-73ec1b5/
H A Dhelpwindow.cc101 helpFile = QDir::toNativeSeparators( helpDir + "/gdhelp_" + localeName + ".qch" ); in HelpWindow()
103 if( !QFileInfo( helpFile ).isFile() ) in HelpWindow()
104 helpFile = QDir::toNativeSeparators( helpDir + "/gdhelp_" + localeName.left( 2 ) + ".qch" ); in HelpWindow()
106 if( !QFileInfo( helpFile ).isFile() ) in HelpWindow()
107 helpFile = QDir::toNativeSeparators( helpDir + "/gdhelp_en.qch" ); in HelpWindow()
121 if( !helpEngine->registerDocumentation( helpFile ) ) in HelpWindow()
/dports/devel/cppcheck/cppcheck-2.6.3/gui/
H A Dhelpdialog.cpp55 QString helpFile = getHelpFile(); in HelpDialog() local
56 if (helpFile.isEmpty()) { in HelpDialog()
68 mHelpEngine = new QHelpEngine(helpFile); in HelpDialog()

12345678910>>...13