From 3ade071f273aaa973e44bf95d6b1d4913a18f03b Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 19:39:48 +0200 Subject: Adding upstream version 43.2. Signed-off-by: Daniel Baumann --- src/nautilus-enums.h | 81 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 81 insertions(+) create mode 100644 src/nautilus-enums.h (limited to 'src/nautilus-enums.h') diff --git a/src/nautilus-enums.h b/src/nautilus-enums.h new file mode 100644 index 0000000..022e622 --- /dev/null +++ b/src/nautilus-enums.h @@ -0,0 +1,81 @@ +/* Copyright (C) 2018 Ernestas Kulik + * + * This file is part of Nautilus. + * + * Nautilus 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. + * + * Nautilus 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 Nautilus. If not, see . + */ + +/* This is the little brother of nautilus-types.h and only contains enumerations. + * + * Now that you’ve familiarized yourself with it, the reason for its existence + * is similar, and the split is purely for convenience reasons. Include this + * when you only need a certain enumeration and not the whole header that might + * have had it originally. Otherwise, include both! + */ + +#pragma once + +/* Keep sorted alphabetically. */ + +typedef enum +{ + NAUTILUS_GRID_ICON_SIZE_SMALL = 48, + NAUTILUS_GRID_ICON_SIZE_SMALL_PLUS = 64, + NAUTILUS_GRID_ICON_SIZE_MEDIUM = 96, + NAUTILUS_GRID_ICON_SIZE_LARGE = 168, + NAUTILUS_GRID_ICON_SIZE_EXTRA_LARGE = 256, +} NautilusGridIconSize; + +typedef enum +{ + NAUTILUS_GRID_ZOOM_LEVEL_SMALL, + NAUTILUS_GRID_ZOOM_LEVEL_SMALL_PLUS, + NAUTILUS_GRID_ZOOM_LEVEL_MEDIUM, + NAUTILUS_GRID_ZOOM_LEVEL_LARGE, + NAUTILUS_GRID_ZOOM_LEVEL_EXTRA_LARGE, +} NautilusGridZoomLevel; + +typedef enum +{ + NAUTILUS_LIST_ICON_SIZE_SMALL = 16, + NAUTILUS_LIST_ICON_SIZE_MEDIUM = 32, + NAUTILUS_LIST_ICON_SIZE_LARGE = 64, +} NautilusListIconSize; + +typedef enum +{ + NAUTILUS_LIST_ZOOM_LEVEL_SMALL, + NAUTILUS_LIST_ZOOM_LEVEL_MEDIUM, + NAUTILUS_LIST_ZOOM_LEVEL_LARGE, +} NautilusListZoomLevel; + +typedef enum +{ + NAUTILUS_FILE_ATTRIBUTE_INFO = 1 << 0, /* All standard info */ + NAUTILUS_FILE_ATTRIBUTE_DEEP_COUNTS = 1 << 1, + NAUTILUS_FILE_ATTRIBUTE_DIRECTORY_ITEM_COUNT = 1 << 2, + NAUTILUS_FILE_ATTRIBUTE_DIRECTORY_ITEM_MIME_TYPES = 1 << 3, + NAUTILUS_FILE_ATTRIBUTE_EXTENSION_INFO = 1 << 4, + NAUTILUS_FILE_ATTRIBUTE_THUMBNAIL = 1 << 5, + NAUTILUS_FILE_ATTRIBUTE_MOUNT = 1 << 6, + NAUTILUS_FILE_ATTRIBUTE_FILESYSTEM_INFO = 1 << 7, +} NautilusFileAttributes; + +typedef enum +{ + NAUTILUS_OPEN_FLAG_NORMAL = 1 << 0, + NAUTILUS_OPEN_FLAG_NEW_WINDOW = 1 << 1, + NAUTILUS_OPEN_FLAG_NEW_TAB = 1 << 2, + NAUTILUS_OPEN_FLAG_DONT_MAKE_ACTIVE = 1 << 3, +} NautilusOpenFlags; -- cgit v1.2.3