/* This file is part of WebPFormat, a File Format plugin for Adobe Photoshop Copyright (C) 2002-2010 Toby Thain, toby@telegraphics.com.au 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #include "winuser.h" #include "ui_defs.h" /* left,top,w,h */ ID_OPTIONSDLG DIALOG DISCARDABLE 34, 40, 364, 160 STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION CAPTION "WebP Format" FONT 8, "MS Sans Serif" BEGIN DEFPUSHBUTTON "&OK", IDOK, 305,134, 42, 14 PUSHBUTTON "&Cancel", IDCANCEL, 247,134, 42, 14 LTEXT "Encoding Quality:", 3, 15, 26, 110, 12 EDITTEXT PCT_ITEM, 313, 26, 24, 12, ES_NUMBER|ES_RIGHT LTEXT "%", 5, 345, 26, 40, 12 LTEXT "Lowest", 6, 113, 11, 40, 12 LTEXT "Highest", 7, 265, 11, 40, 12 CONTROL "", QUALITY_ITEM, "msctls_trackbar32", TBS_HORZ|TBS_AUTOTICKS, 110, 26, 183, 10 LTEXT "Filtering Profile:", 9, 15, 52, 110, 12 RADIOBUTTON "Strong", PROFILE_STRONG_ITEM, 240,52, 60,12 RADIOBUTTON "Simple", PROFILE_SIMPLE_ITEM, 175,52, 60,12 RADIOBUTTON "None", PROFILE_NONE_ITEM, 110,52, 60,12 LTEXT "Denoising Strength:", 13, 15, 78, 110, 12 CONTROL "", DENOISING_ITEM, "msctls_trackbar32", TBS_HORZ|TBS_AUTOTICKS, 110, 78, 183, 10 LTEXT "Sharpness Level:", 15, 15,104, 110, 12 CONTROL "", SHARPNESS_ITEM, "msctls_trackbar32", TBS_HORZ|TBS_AUTOTICKS, 110,104, 183, 10 END