File indexing completed on 2024-06-02 05:19:14

0001 /*
0002  *  config.h  -  config functions
0003  *  Program:  kalarm
0004  *  SPDX-FileCopyrightText: 2006-2019 David Jarvie <djarvie@kde.org>
0005  *
0006  *  SPDX-License-Identifier: GPL-2.0-or-later
0007  */
0008 
0009 #pragma once
0010 
0011 class QSize;
0012 
0013 namespace Config
0014 {
0015 
0016 bool readWindowSize(const char* window, QSize&, int* splitterWidth = nullptr);
0017 void writeWindowSize(const char* window, const QSize&, int splitterWidth = -1);
0018 
0019 } // namespace Config
0020 
0021 // vim: et sw=4: