diff options
| author | Henrik Rydberg <rydberg@bitmath.org> | 2011-02-09 13:13:08 +0100 |
|---|---|---|
| committer | Henrik Rydberg <rydberg@bitmath.org> | 2011-02-09 13:13:08 +0100 |
| commit | e78a0f55d2e3bcfd6f4a01d9e77be0708f4aa40e (patch) | |
| tree | 7a8aa5242efbf319623bd5087235797af9a5b4f9 /src/utouch.cpp | |
initial load
Diffstat (limited to 'src/utouch.cpp')
| -rw-r--r-- | src/utouch.cpp | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/src/utouch.cpp b/src/utouch.cpp new file mode 100644 index 0000000..e55346c --- /dev/null +++ b/src/utouch.cpp | |||
| @@ -0,0 +1,45 @@ | |||
| 1 | /** | ||
| 2 | * @file utouch.cpp | ||
| 3 | * @brief Public interface implementation for the uTouch compiz plugin. | ||
| 4 | * | ||
| 5 | * Copyright 2011 Canonical Ltd. | ||
| 6 | * | ||
| 7 | * This program is free software: you can redistribute it and/or modify | ||
| 8 | * it under the terms of the GNU General Public License as published by | ||
| 9 | * the Free Software Foundation, either version 3 of the License, or | ||
| 10 | * (at your option) any later version. | ||
| 11 | * | ||
| 12 | * This program is distributed in the hope that it will be useful, | ||
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 15 | * GNU General Public License for more details. | ||
| 16 | * | ||
| 17 | * You should have received a copy of the GNU General Public License | ||
| 18 | * along with this program; if not, write to the Free Software Foundation, Inc., | ||
| 19 | * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | ||
| 20 | */ | ||
| 21 | #include "utouch.h" | ||
| 22 | |||
| 23 | |||
| 24 | COMPIZ_PLUGIN_20090315(utouch, UtouchVTable); | ||
| 25 | |||
| 26 | bool | ||
| 27 | UtouchVTable::init() | ||
| 28 | { | ||
| 29 | return true; | ||
| 30 | } | ||
| 31 | |||
| 32 | |||
| 33 | UtouchScreen:: | ||
| 34 | UtouchScreen(CompScreen* s) | ||
| 35 | : PluginClassHandler<UtouchScreen, CompScreen>(s) | ||
| 36 | , screen(s) | ||
| 37 | { | ||
| 38 | } | ||
| 39 | |||
| 40 | |||
| 41 | UtouchScreen:: | ||
| 42 | ~UtouchScreen() | ||
| 43 | { | ||
| 44 | } | ||
| 45 | |||
