aboutsummaryrefslogtreecommitdiff
path: root/src/FbMenuParser.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/FbMenuParser.hh')
-rw-r--r--src/FbMenuParser.hh56
1 files changed, 0 insertions, 56 deletions
diff --git a/src/FbMenuParser.hh b/src/FbMenuParser.hh
deleted file mode 100644
index c690ab9..0000000
--- a/src/FbMenuParser.hh
+++ /dev/null
@@ -1,56 +0,0 @@
1// FbMenuParser.hh for Fluxbox
2// Copyright (c) 2004 - 2006 Henrik Kinnunen (fluxgen at fluxbox dot org)
3// and Simon Bowden (rathnor at users.sourceforge.net)
4//
5// Permission is hereby granted, free of charge, to any person obtaining a
6// copy of this software and associated documentation files (the "Software"),
7// to deal in the Software without restriction, including without limitation
8// the rights to use, copy, modify, merge, publish, distribute, sublicense,
9// and/or sell copies of the Software, and to permit persons to whom the
10// Software is furnished to do so, subject to the following conditions:
11//
12// The above copyright notice and this permission notice shall be included in
13// all copies or substantial portions of the Software.
14//
15// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21// DEALINGS IN THE SOFTWARE.
22
23#ifndef FBMENUPARSER_HH
24#define FBMENUPARSER_HH
25
26#include "FbTk/Parser.hh"
27
28#include <fstream>
29
30class FbMenuParser: public FbTk::Parser {
31public:
32 FbMenuParser():m_row(0), m_curr_pos(0), m_curr_token(TYPE) {}
33 FbMenuParser(const std::string &filename):m_row(0), m_curr_pos(0),
34 m_curr_token(TYPE) { open(filename); }
35 ~FbMenuParser() { close(); }
36
37 bool open(const std::string &filename);
38 void close() { m_file.close(); }
39 FbTk::Parser &operator >> (FbTk::Parser::Item &out);
40 FbTk::Parser::Item nextItem();
41
42 bool isLoaded() const { return m_file.is_open(); }
43 bool eof() const { return m_file.eof(); }
44 int row() const { return m_row; }
45 std::string line() const { return m_curr_line; }
46private:
47 bool nextLine();
48
49 mutable std::ifstream m_file;
50 int m_row;
51 int m_curr_pos;
52 std::string m_curr_line;
53 enum Object {TYPE, NAME, ARGUMENT, ICON, DONE} m_curr_token;
54};
55
56#endif // FBMENUPARSER_HH