2023-09-26 00:35:21 +02:00
|
|
|
/* PIKA - Photo and Image Kooker Application
|
|
|
|
* a rebranding of The GNU Image Manipulation Program (created with heckimp)
|
|
|
|
* A derived work which may be trivial. However, any changes may be (C)2023 by Aldercone Studio
|
|
|
|
*
|
|
|
|
* Original copyright, applying to most contents (license remains unchanged):
|
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
|
|
|
* 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 3 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, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __SCREENSHOT_H__
|
|
|
|
#define __SCREENSHOT_H__
|
|
|
|
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
SCREENSHOT_BACKEND_NONE,
|
|
|
|
SCREENSHOT_BACKEND_OSX,
|
|
|
|
SCREENSHOT_BACKEND_WIN32,
|
|
|
|
SCREENSHOT_BACKEND_FREEDESKTOP,
|
|
|
|
SCREENSHOT_BACKEND_X11
|
|
|
|
} ScreenshotBackend;
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
SCREENSHOT_CAN_SHOOT_DECORATIONS = 0x1 << 0,
|
|
|
|
SCREENSHOT_CAN_SHOOT_POINTER = 0x1 << 1,
|
|
|
|
SCREENSHOT_CAN_PICK_NONINTERACTIVELY = 0x1 << 2,
|
|
|
|
SCREENSHOT_CAN_SHOOT_REGION = 0x1 << 3,
|
2023-10-30 23:55:30 +01:00
|
|
|
/* SHOOT_WINDOW mode only: if window selection requires active click. */
|
2023-09-26 00:35:21 +02:00
|
|
|
SCREENSHOT_CAN_PICK_WINDOW = 0x1 << 4,
|
|
|
|
/* SHOOT_WINDOW + SCREENSHOT_CAN_PICK_WINDOW only: if a delay can be
|
|
|
|
* inserted in-between selection click and actual snapshot. */
|
|
|
|
SCREENSHOT_CAN_DELAY_WINDOW_SHOT = 0x1 << 5,
|
|
|
|
SCREENSHOT_CAN_SHOOT_WINDOW = 0x1 << 6
|
|
|
|
} ScreenshotCapabilities;
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
SCREENSHOT_PROFILE_POLICY_MONITOR,
|
|
|
|
SCREENSHOT_PROFILE_POLICY_SRGB
|
|
|
|
} ScreenshotProfilePolicy;
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
SHOOT_WINDOW,
|
|
|
|
SHOOT_ROOT,
|
|
|
|
SHOOT_REGION
|
|
|
|
} ShootType;
|
|
|
|
|
|
|
|
|
2023-10-30 23:55:30 +01:00
|
|
|
void screenshot_wait_delay (gint seconds);
|
2023-09-26 00:35:21 +02:00
|
|
|
|
|
|
|
|
|
|
|
#endif /* __SCREENSHOT_H__ */
|