• Skip to content
  • Skip to link menu
Trinity API Reference
  • Trinity API Reference
  • libkonq
 

libkonq

  • libkonq
konq_xmlguiclient.h
1/* This file is part of the KDE project
2 Copyright (C) 2001 Holger Freyther <freyther@yahoo.com>
3
4 This library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public
6 License as published by the Free Software Foundation; either
7 version 2 of the License, or (at your option) any later version.
8
9 This library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Library General Public License for more details.
13
14 You should have received a copy of the GNU Library General Public License
15 along with this library; see the file COPYING.LIB. If not, write to
16 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 Boston, MA 02110-1301, USA.
18*/
19
20#ifndef __konqxmlguiclient_h
21#define __konqxmlguiclient_h
22
23#include <sys/types.h>
24
25#include <tdeaction.h>
26#include <kxmlguiclient.h>
27#include <tqstringlist.h>
28#include <libkonq_export.h>
29
34class LIBKONQ_EXPORT KonqXMLGUIClient : public KXMLGUIClient
35{
36public:
37 KonqXMLGUIClient();
38 KonqXMLGUIClient(KXMLGUIClient *parent);
39 virtual ~KonqXMLGUIClient();
43 TQDomDocument domDocument() const;
44 TQDomElement DomElement() const; // KDE4: s/D/d/
45
46 // @return true if the group named "name" exists
47 bool hasGroup(const TQString &name) const;
48
49protected:
50 void addAction(TDEAction *action, const TQDomElement &menu = TQDomElement());
51 void addAction(const char *name, const TQDomElement &menu = TQDomElement());
52 void addSeparator(const TQDomElement &menu = TQDomElement());
54 void addPendingSeparator();
55 void addGroup(const TQString &grp);
56 void addMerge(const TQString &name);
57
58 // @return true if addAction was called at least once
59 bool hasAction() const;
60 void prepareXMLGUIStuff();
61
62// KDE4: make private
63 TQDomElement m_menuElement;
64 TQDomDocument m_doc;
65
66private:
67 void handlePendingSeparator();
68 class Private;
69 Private *d;
70};
71#endif
72
KonqXMLGUIClient
This class implements common methods to manipulate the DOMDocument of KXMLGUIClient.
Definition: konq_xmlguiclient.h:35

libkonq

Skip menu "libkonq"
  • Main Page
  • Class Hierarchy
  • Alphabetical List
  • Class List
  • File List
  • Class Members
  • Related Pages

libkonq

Skip menu "libkonq"
  • kate
  • libkonq
  • twin
  •   lib
Generated for libkonq by doxygen 1.9.4
This website is maintained by Timothy Pearson.