/* * Copyright (C) 2007 Montel Laurent * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser 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 Lesser 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 KSNAPSHOTOPTIONS_H #define KSNAPSHOTOPTIONS_H #include #include static KCmdLineOptions ksnapshot_options () { KCmdLineOptions options; options.add("c"); options.add("current", ki18n("Captures the window under the mouse on startup (instead of the desktop)")); options.add("fullscreen", ki18n("Captures the desktop")); options.add("region", ki18n("Captures a region")); options.add("freeregion", ki18n("Captures a free region (not rectangular)")); options.add("child", ki18n("Captures a part of windows")); return options; } #endif