* cosmetics to Workspace.hh CurrentWindowCmd.cc
* added first draft of new docs in asciidoc format, needs to be converted properly to roff-format, right now its just a temporary "home" * rename of Coding_style to CODESTYLE
This commit is contained in:
parent
edafa987be
commit
dc53283060
6 changed files with 1635 additions and 26 deletions
|
@ -1,5 +1,8 @@
|
|||
(Format: Year/Month/Day)
|
||||
Changes for 0.9.16:
|
||||
*06/04/22:
|
||||
* First draft of new docs in docs/asciidoc (Mathias)
|
||||
* Cosmetics to Workspace.hh CurrentWindowCmd.cc
|
||||
*06/04/21:
|
||||
* Minor fixes to slit transparency (esp if autohidden) (Simon)
|
||||
Slit.cc
|
||||
|
@ -213,6 +216,7 @@ Changes for 0.9.16:
|
|||
fluxbox.cc Screen.hh/cc Window.hh/cc FbWinFrame.hh/cc Remember.cc
|
||||
Container.hh/cc FbTk/XLayer.hh/cc XLayerItem.cc fluxbox-nls.hh
|
||||
RowSmart/ColSmart/UnderMousePlacement.cc WinButton.cc
|
||||
|
||||
-------------------------------------------------------------
|
||||
Changes for 0.9.15:
|
||||
*06/03/19:
|
||||
|
@ -377,6 +381,8 @@ Changes for 0.9.15:
|
|||
src/ScreenResources.cc
|
||||
* Use fbsetroot in Default-Styles (Mathias)
|
||||
data/styles/*
|
||||
|
||||
-------------------------------------------------------------
|
||||
Changes for 0.9.14:
|
||||
*05/09/12:
|
||||
* Fixes #1281708, MenuIcon doesnt scale properly (thanx Erik-Jan)
|
||||
|
|
31
doc/asciidoc/README.txt
Normal file
31
doc/asciidoc/README.txt
Normal file
|
@ -0,0 +1,31 @@
|
|||
whats this? this is the attempt to write the documentation for
|
||||
fluxbox in ascii-doc format. how does it work?
|
||||
|
||||
well, we just edit fluxbox.txt from this directory. save it.
|
||||
then we can produce pretty much any format we like:
|
||||
|
||||
man:
|
||||
|
||||
$> asciidoc -b docbook -d manpage fluxbox.txt
|
||||
$> xmlto man fluxbox.xml
|
||||
|
||||
pdf:
|
||||
|
||||
$> asciidoc -b docbook -d manpage fluxbox.txt
|
||||
$> docbook2pdf fluxbox.xml
|
||||
|
||||
docbook:
|
||||
|
||||
$> asciidoc -b docbook-sgml -d manpage fluxbox.txt
|
||||
|
||||
html:
|
||||
|
||||
$> asciidoc -b xhtml -d manpage fluxbox.txt
|
||||
|
||||
and many many more ways to do it.
|
||||
what do we need? well, at least:
|
||||
|
||||
http://www.methods.co.nz/asciidoc/
|
||||
http://cyberelk.net/tim/xmlto/
|
||||
|
||||
and the rest of the docbook-family + maybe pdftex.
|
1572
doc/asciidoc/fluxbox.txt
Normal file
1572
doc/asciidoc/fluxbox.txt
Normal file
File diff suppressed because it is too large
Load diff
|
@ -22,8 +22,8 @@
|
|||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
// DEALINGS IN THE SOFTWARE.
|
||||
|
||||
#ifndef WORKSPACE_HH
|
||||
#define WORKSPACE_HH
|
||||
#ifndef WORKSPACE_HH
|
||||
#define WORKSPACE_HH
|
||||
|
||||
|
||||
|
||||
|
@ -42,7 +42,7 @@ class FluxboxWindow;
|
|||
class WinClient;
|
||||
|
||||
/**
|
||||
Handles a single workspace
|
||||
Handles a single workspace
|
||||
*/
|
||||
class Workspace:private FbTk::NotCopyable, private FbTk::Observer {
|
||||
public:
|
||||
|
@ -71,14 +71,14 @@ public:
|
|||
FluxboxWindow *lastFocusedWindow() { return m_lastfocus; }
|
||||
const FluxboxWindow *lastFocusedWindow() const { return m_lastfocus; }
|
||||
|
||||
inline FbTk::Menu &menu() { return m_clientmenu; }
|
||||
inline const FbTk::Menu &menu() const { return m_clientmenu; }
|
||||
/// name of this workspace
|
||||
inline const std::string &name() const { return m_name; }
|
||||
FbTk::Menu &menu() { return m_clientmenu; }
|
||||
const FbTk::Menu &menu() const { return m_clientmenu; }
|
||||
/// name of this workspace
|
||||
const std::string &name() const { return m_name; }
|
||||
/**
|
||||
@return the number of this workspace, note: obsolete, should be in BScreen
|
||||
*/
|
||||
inline unsigned int workspaceID() const { return m_id; }
|
||||
unsigned int workspaceID() const { return m_id; }
|
||||
|
||||
const Windows &windowList() const { return m_windowlist; }
|
||||
Windows &windowList() { return m_windowlist; }
|
||||
|
@ -105,7 +105,7 @@ private:
|
|||
Windows m_windowlist;
|
||||
|
||||
std::string m_name; ///< name of this workspace
|
||||
unsigned int m_id; ///< id, obsolete, this should be in BScreen
|
||||
unsigned int m_id; ///< id, obsolete, this should be in BScreen
|
||||
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue