File indexing completed on 2024-04-28 03:52:41

0001 //  -*- c-basic-offset:4; indent-tabs-mode:nil -*-
0002 /*
0003     This file is part of the KDE project
0004     SPDX-FileCopyrightText: 2003 Alexander Kellett <lypanov@kde.org>
0005 
0006     SPDX-License-Identifier: LGPL-2.0-or-later
0007 */
0008 
0009 #ifndef __kbookmarksettings_p_h__
0010 #define __kbookmarksettings_p_h__
0011 
0012 #include <kbookmarks_export.h>
0013 
0014 class QString;
0015 class KBookmark;
0016 class KBookmarkGroup;
0017 
0018 #define KEDITBOOKMARKS_BINARY "keditbookmarks"
0019 
0020 class KBOOKMARKS_EXPORT KBookmarkSettings
0021 {
0022 public:
0023     bool m_advancedaddbookmark;
0024     bool m_contextmenu;
0025     static KBookmarkSettings *s_self;
0026     static void readSettings();
0027     static KBookmarkSettings *self();
0028 };
0029 
0030 #endif