From da7847adb43726079c7a4be1f06acbebe0bdde57 Mon Sep 17 00:00:00 2001 From: tpearson Date: Wed, 10 Feb 2010 19:54:13 +0000 Subject: Added old abandoned KDE3 version of Kima git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kima@1088422 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- src/cpufreqd/cpufreqdconnection.h | 69 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 src/cpufreqd/cpufreqdconnection.h (limited to 'src/cpufreqd/cpufreqdconnection.h') diff --git a/src/cpufreqd/cpufreqdconnection.h b/src/cpufreqd/cpufreqdconnection.h new file mode 100644 index 0000000..4f15ad8 --- /dev/null +++ b/src/cpufreqd/cpufreqdconnection.h @@ -0,0 +1,69 @@ +/*************************************************************************** + * Copyright (C) 2006 by Valentine Sinitsyn * + * e_val@inbox.ru * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * + ***************************************************************************/ +#ifndef CPUFREQDCONNECTION_H +#define CPUFREQDCONNECTION_H + +#include +#include + +/* Excerpt from cpufreqd_remote.h (cpufreqd-2.0.0) + * + * Copyright (C) 2005 Mattia Dongili + * Hrvoje Zeba + * + * Format: + * it is an uint32_t used as bitmask + * + * 31-16 15-0 + * + * + * The response may be longer than a single line and is + * terminated by the RESPONSE_END (see defines). + */ + +#define CMD_UPDATE_STATE 1 /* no arguments */ +#define CMD_SET_PROFILE 2 /* */ +#define CMD_LIST_PROFILES 3 /* no arguments */ +#define CMD_SET_RULE 4 /* */ +#define CMD_LIST_RULES 5 /* no arguments */ +#define CMD_SET_MODE 6 /* */ + +#define ARG_DYNAMIC (1) +#define ARG_MANUAL (2) + +class CPUFreqdConnection{ + public: + CPUFreqdConnection(); + ~CPUFreqdConnection(); + + bool open(); + ssize_t read(void *buf, size_t size); + bool write(uint32_t cmd, uint32_t arg); + void close(); + + bool available() const; + bool lookup(); + + private: + QString m_socket; + int m_fd; +}; + +#endif -- cgit v1.2.1