This is an automated email from the ASF dual-hosted git repository.
jmborer pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/netbeans-website.git
The following commit(s) were added to refs/heads/master by this push:
new 341fd96bf Update DevFaqRemoveStatusBar.asciidoc
341fd96bf is described below
commit 341fd96bfe145fc999f3b247f6c065d98650879d
Author: Jean-Marc Borer <[email protected]>
AuthorDate: Fri Jul 15 09:12:03 2022 +0000
Update DevFaqRemoveStatusBar.asciidoc
---
.../content/wiki/DevFaqRemoveStatusBar.asciidoc | 31 ++++++++++++----------
1 file changed, 17 insertions(+), 14 deletions(-)
diff --git
a/netbeans.apache.org/src/content/wiki/DevFaqRemoveStatusBar.asciidoc
b/netbeans.apache.org/src/content/wiki/DevFaqRemoveStatusBar.asciidoc
index 3851aa7bd..0fb54c95e 100644
--- a/netbeans.apache.org/src/content/wiki/DevFaqRemoveStatusBar.asciidoc
+++ b/netbeans.apache.org/src/content/wiki/DevFaqRemoveStatusBar.asciidoc
@@ -18,6 +18,7 @@
//
= DevFaqRemoveStatusBar
+-reviewed: 2022-07-14
:jbake-type: wiki
:jbake-tags: wiki, devfaq, needsreview
:jbake-status: published
@@ -55,12 +56,21 @@ Never be afraid to read the code :-) Looking at
org.netbeans.core.windows.vie
}
----
-`Constants.CUSTOM_STATUS_LINE_PATH` is defined as
+`Constants.CUSTOM_STATUS_LINE_PATH` is defined as
+
+[source,java]
+----
+
System.getProperty("netbeans.winsys.status_line.path");
+----
+
+So, have a module which, in its `ModuleInstall` (or as a command-line
parameter in their `myApp.conf`), does
-So, have a module which, in its ModuleInstall (or as a command-line parameter
in their myApp.conf), does
+[source,java]
+----
System.setProperty("netbeans.winsys.status_line.path",
"com/foo/com-foo-MyStatusBar.instance");
+----
and in its layer file, does something like
@@ -90,18 +100,11 @@ Note you will probably want to provide your own instance
of StatusDisplayer in t
Another option (exception on Mac OS) is to move the status line to the main
menu (it will use the space to the right of the last menu item) -
-netbeans -Dnetbeans.winsys.statusLine.in.menuBar=true
-
-or the equivalent System.setProperty() from a ModuleInstall
-
-== Apache Migration Information
-
-The content in this page was kindly donated by Oracle Corp. to the
-Apache Software Foundation.
+[source,bash]
+----
-This page was exported from
link:http://wiki.netbeans.org/DevFaqRemoveStatusBar[http://wiki.netbeans.org/DevFaqRemoveStatusBar]
,
-that was last modified by NetBeans user Geertjan
-on 2010-02-17T20:05:05Z.
+netbeans -Dnetbeans.winsys.statusLine.in.menuBar=true
+----
-*NOTE:* This document was automatically converted to the AsciiDoc format on
2018-02-07, and needs to be reviewed.
+or the equivalent `System.setProperty()` from a `ModuleInstall`
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists