HTYPaint/mainwindow.ui

773 lines
20 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>MainWindow</class>
<widget class="QMainWindow" name="MainWindow">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>1050</width>
<height>600</height>
</rect>
</property>
<property name="acceptDrops">
<bool>true</bool>
</property>
<property name="windowTitle">
<string>海天鹰画图</string>
</property>
<property name="windowIcon">
<iconset resource="res.qrc">
<normaloff>:/icon/HTYPaint.png</normaloff>:/icon/HTYPaint.png</iconset>
</property>
<widget class="QWidget" name="centralWidget"/>
<widget class="QMenuBar" name="menuBar">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>1050</width>
<height>27</height>
</rect>
</property>
<widget class="QMenu" name="menu_file">
<property name="title">
<string>文件</string>
</property>
<addaction name="action_new"/>
<addaction name="action_open"/>
<addaction name="action_import"/>
<addaction name="action_save"/>
<addaction name="action_saveas"/>
<addaction name="action_quit"/>
</widget>
<widget class="QMenu" name="menu_edit">
<property name="title">
<string>编辑</string>
</property>
<addaction name="action_undo"/>
<addaction name="action_redo"/>
<addaction name="action_copy"/>
<addaction name="action_cut"/>
<addaction name="action_paste"/>
<addaction name="action_selectAll"/>
<addaction name="action_delete"/>
</widget>
<widget class="QMenu" name="menu_image">
<property name="title">
<string>图像</string>
</property>
<addaction name="action_flip"/>
<addaction name="action_excude"/>
<addaction name="action_property"/>
<addaction name="action_setWallpaper"/>
<addaction name="action_gray"/>
<addaction name="action_invert"/>
<addaction name="action_blur"/>
<addaction name="action_transparent"/>
<addaction name="action_mosaic"/>
<addaction name="action_matting"/>
<addaction name="action_adjustRGB"/>
<addaction name="action_brightness"/>
<addaction name="action_contrast"/>
<addaction name="action_clip"/>
<addaction name="action_clipPath"/>
<addaction name="action_deleteBlackBorder"/>
<addaction name="action_cutBorder"/>
<addaction name="action_dashPattern"/>
<addaction name="action_slice"/>
</widget>
<widget class="QMenu" name="menu_about">
<property name="title">
<string>帮助</string>
</property>
<addaction name="action_help"/>
<addaction name="action_changelog"/>
<addaction name="action_aboutQt"/>
<addaction name="action_about"/>
</widget>
<addaction name="menu_file"/>
<addaction name="menu_edit"/>
<addaction name="menu_image"/>
<addaction name="menu_about"/>
</widget>
<widget class="QToolBar" name="mainToolBar">
<property name="movable">
<bool>false</bool>
</property>
<attribute name="toolBarArea">
<enum>TopToolBarArea</enum>
</attribute>
<attribute name="toolBarBreak">
<bool>false</bool>
</attribute>
<addaction name="actionPencil"/>
<addaction name="actionLine"/>
<addaction name="action_polyline"/>
<addaction name="actionArrow"/>
<addaction name="actionRect"/>
<addaction name="actionEllipse"/>
<addaction name="actionText"/>
<addaction name="actionColorPicker"/>
<addaction name="actionFill"/>
<addaction name="actionErase"/>
<addaction name="actionMove"/>
<addaction name="actionRectSelect"/>
<addaction name="actionCutSelect"/>
<addaction name="actionRotateLeft"/>
<addaction name="actionRotateRight"/>
<addaction name="actionMirrorHorizontal"/>
<addaction name="actionMirrorVertical"/>
<addaction name="actionZoomout"/>
<addaction name="actionZoomin"/>
<addaction name="actionZoom1"/>
<addaction name="actionFont"/>
</widget>
<widget class="QStatusBar" name="statusBar"/>
<action name="action_open">
<property name="icon">
<iconset theme="document-open">
<normaloff>.</normaloff>.</iconset>
</property>
<property name="text">
<string>打开</string>
</property>
<property name="shortcut">
<string>Ctrl+O</string>
</property>
</action>
<action name="action_save">
<property name="icon">
<iconset theme="document-save">
<normaloff>.</normaloff>.</iconset>
</property>
<property name="text">
<string>保存</string>
</property>
<property name="shortcut">
<string>Ctrl+S</string>
</property>
</action>
<action name="action_saveas">
<property name="icon">
<iconset theme="document-save-as">
<normaloff>.</normaloff>.</iconset>
</property>
<property name="text">
<string>另存为</string>
</property>
<property name="shortcut">
<string>Ctrl+Shift+S</string>
</property>
</action>
<action name="action_quit">
<property name="icon">
<iconset theme="application-exit">
<normaloff>.</normaloff>.</iconset>
</property>
<property name="text">
<string>退出</string>
</property>
<property name="shortcut">
<string>Ctrl+Q</string>
</property>
</action>
<action name="action_undo">
<property name="icon">
<iconset theme="edit-undo">
<normaloff>.</normaloff>.</iconset>
</property>
<property name="text">
<string>撤销</string>
</property>
<property name="shortcut">
<string>Ctrl+Z</string>
</property>
</action>
<action name="action_redo">
<property name="icon">
<iconset theme="edit-redo">
<normaloff>.</normaloff>.</iconset>
</property>
<property name="text">
<string>重做</string>
</property>
<property name="shortcut">
<string>Ctrl+Y</string>
</property>
</action>
<action name="action_copy">
<property name="icon">
<iconset theme="edit-copy">
<normaloff>.</normaloff>.</iconset>
</property>
<property name="text">
<string>复制</string>
</property>
<property name="shortcut">
<string>Ctrl+C</string>
</property>
</action>
<action name="action_cut">
<property name="icon">
<iconset theme="edit-cut">
<normaloff>.</normaloff>.</iconset>
</property>
<property name="text">
<string>剪切</string>
</property>
<property name="shortcut">
<string>Ctrl+X</string>
</property>
</action>
<action name="action_paste">
<property name="icon">
<iconset theme="edit-paste">
<normaloff>.</normaloff>.</iconset>
</property>
<property name="text">
<string>粘贴</string>
</property>
<property name="shortcut">
<string>Ctrl+V</string>
</property>
</action>
<action name="action_selectAll">
<property name="icon">
<iconset theme="edit-select-all">
<normaloff>.</normaloff>.</iconset>
</property>
<property name="text">
<string>全选</string>
</property>
<property name="shortcut">
<string>Ctrl+A</string>
</property>
</action>
<action name="action_delete">
<property name="icon">
<iconset theme="edit-delete">
<normaloff>.</normaloff>.</iconset>
</property>
<property name="text">
<string>删除</string>
</property>
<property name="shortcut">
<string>Del</string>
</property>
</action>
<action name="action_flip">
<property name="text">
<string>翻转/旋转</string>
</property>
<property name="toolTip">
<string>翻转/旋转</string>
</property>
<property name="shortcut">
<string>Ctrl+R</string>
</property>
</action>
<action name="action_excude">
<property name="text">
<string>拉伸/扭曲</string>
</property>
<property name="toolTip">
<string>拉伸/扭曲</string>
</property>
<property name="shortcut">
<string>Ctrl+W</string>
</property>
</action>
<action name="action_property">
<property name="icon">
<iconset theme="document-properties">
<normaloff>.</normaloff>.</iconset>
</property>
<property name="text">
<string>属性</string>
</property>
<property name="shortcut">
<string>Ctrl+E</string>
</property>
</action>
<action name="action_setWallpaper">
<property name="icon">
<iconset theme="computer">
<normaloff>.</normaloff>.</iconset>
</property>
<property name="text">
<string>设为壁纸</string>
</property>
</action>
<action name="action_help">
<property name="icon">
<iconset theme="help-contents">
<normaloff>.</normaloff>.</iconset>
</property>
<property name="text">
<string>帮助</string>
</property>
<property name="shortcut">
<string>F1</string>
</property>
</action>
<action name="action_changelog">
<property name="icon">
<iconset theme="help-faq">
<normaloff>.</normaloff>.</iconset>
</property>
<property name="text">
<string>更新日志</string>
</property>
</action>
<action name="action_about">
<property name="icon">
<iconset theme="help-about">
<normaloff>.</normaloff>.</iconset>
</property>
<property name="text">
<string>关于</string>
</property>
</action>
<action name="action_new">
<property name="icon">
<iconset theme="document-new">
<normaloff>.</normaloff>.</iconset>
</property>
<property name="text">
<string>新建</string>
</property>
<property name="shortcut">
<string>Ctrl+N</string>
</property>
</action>
<action name="actionPencil">
<property name="checkable">
<bool>true</bool>
</property>
<property name="checked">
<bool>false</bool>
</property>
<property name="enabled">
<bool>true</bool>
</property>
<property name="icon">
<iconset resource="res.qrc">
<normaloff>:/icon/pencil.png</normaloff>:/icon/pencil.png</iconset>
</property>
<property name="text">
<string>铅笔</string>
</property>
<property name="toolTip">
<string>铅笔</string>
</property>
</action>
<action name="actionLine">
<property name="checkable">
<bool>true</bool>
</property>
<property name="icon">
<iconset resource="res.qrc">
<normaloff>:/icon/line.png</normaloff>:/icon/line.png</iconset>
</property>
<property name="text">
<string>直线</string>
</property>
<property name="toolTip">
<string>直线</string>
</property>
</action>
<action name="actionEllipse">
<property name="checkable">
<bool>true</bool>
</property>
<property name="icon">
<iconset resource="res.qrc">
<normaloff>:/icon/ellipse.png</normaloff>:/icon/ellipse.png</iconset>
</property>
<property name="text">
<string>椭圆</string>
</property>
<property name="toolTip">
<string>椭圆</string>
</property>
</action>
<action name="actionRect">
<property name="checkable">
<bool>true</bool>
</property>
<property name="icon">
<iconset resource="res.qrc">
<normaloff>:/icon/rect.png</normaloff>:/icon/rect.png</iconset>
</property>
<property name="text">
<string>矩形</string>
</property>
<property name="toolTip">
<string>矩形</string>
</property>
</action>
<action name="actionText">
<property name="checkable">
<bool>true</bool>
</property>
<property name="icon">
<iconset resource="res.qrc">
<normaloff>:/icon/text.png</normaloff>:/icon/text.png</iconset>
</property>
<property name="text">
<string>文本</string>
</property>
<property name="toolTip">
<string>文本</string>
</property>
</action>
<action name="actionErase">
<property name="checkable">
<bool>true</bool>
</property>
<property name="icon">
<iconset resource="res.qrc">
<normaloff>:/icon/eraser.png</normaloff>:/icon/eraser.png</iconset>
</property>
<property name="text">
<string>擦子</string>
</property>
<property name="toolTip">
<string>擦子</string>
</property>
</action>
<action name="actionMove">
<property name="checkable">
<bool>true</bool>
</property>
<property name="icon">
<iconset resource="res.qrc">
<normaloff>:/icon/move.png</normaloff>:/icon/move.png</iconset>
</property>
<property name="text">
<string>move</string>
</property>
<property name="toolTip">
<string>移动</string>
</property>
</action>
<action name="actionRectSelect">
<property name="checkable">
<bool>true</bool>
</property>
<property name="icon">
<iconset resource="res.qrc">
<normaloff>:/icon/rectselect.png</normaloff>:/icon/rectselect.png</iconset>
</property>
<property name="text">
<string>rectselect</string>
</property>
<property name="toolTip">
<string>框选</string>
</property>
</action>
<action name="actionColorFill">
<property name="checkable">
<bool>false</bool>
</property>
<property name="checked">
<bool>false</bool>
</property>
<property name="text">
<string></string>
</property>
<property name="toolTip">
<string>填充</string>
</property>
<property name="font">
<font>
<pointsize>13</pointsize>
</font>
</property>
</action>
<action name="actionColorBorder">
<property name="text">
<string></string>
</property>
<property name="toolTip">
<string>边框</string>
</property>
<property name="font">
<font>
<pointsize>13</pointsize>
</font>
</property>
</action>
<action name="actionFont">
<property name="text">
<string>字体</string>
</property>
<property name="toolTip">
<string>字体</string>
</property>
</action>
<action name="actionCutSelect">
<property name="checkable">
<bool>false</bool>
</property>
<property name="icon">
<iconset resource="res.qrc">
<normaloff>:/icon/clip.png</normaloff>:/icon/clip.png</iconset>
</property>
<property name="text">
<string>剪切选区</string>
</property>
<property name="toolTip">
<string>剪切选区</string>
</property>
</action>
<action name="actionFill">
<property name="checkable">
<bool>true</bool>
</property>
<property name="icon">
<iconset resource="res.qrc">
<normaloff>:/icon/fill.png</normaloff>:/icon/fill.png</iconset>
</property>
<property name="text">
<string>Fill</string>
</property>
<property name="toolTip">
<string>填充</string>
</property>
</action>
<action name="action_aboutQt">
<property name="text">
<string>关于 &amp;Qt</string>
</property>
</action>
<action name="actionZoomin">
<property name="icon">
<iconset theme="zoom-in">
<normaloff>:/zoomin.png</normaloff>:/zoomin.png</iconset>
</property>
<property name="text">
<string>+</string>
</property>
<property name="toolTip">
<string>放大</string>
</property>
</action>
<action name="actionZoomout">
<property name="icon">
<iconset theme="zoom-out">
<normaloff>:/zoomout.png</normaloff>:/zoomout.png</iconset>
</property>
<property name="text">
<string>-</string>
</property>
<property name="toolTip">
<string>缩小</string>
</property>
</action>
<action name="actionZoom1">
<property name="icon">
<iconset theme="zoom-original">
<normaloff>:/zoom1.png</normaloff>:/zoom1.png</iconset>
</property>
<property name="text">
<string>1</string>
</property>
<property name="toolTip">
<string>实际大小</string>
</property>
</action>
<action name="actionRotateRight">
<property name="icon">
<iconset theme="object-rotate-right">
<normaloff>:/rr.png</normaloff>:/rr.png</iconset>
</property>
<property name="text">
<string>rotateRight</string>
</property>
<property name="toolTip">
<string>右转90°</string>
</property>
</action>
<action name="actionRotateLeft">
<property name="icon">
<iconset theme="object-rotate-left">
<normaloff>:/rl.png</normaloff>:/rl.png</iconset>
</property>
<property name="text">
<string>RotateLeft</string>
</property>
<property name="toolTip">
<string>左转90°</string>
</property>
</action>
<action name="actionMirrorHorizontal">
<property name="icon">
<iconset theme="object-flip-horizontal">
<normaloff>:/MirrorHorizontal.png</normaloff>:/MirrorHorizontal.png</iconset>
</property>
<property name="text">
<string>MirrorHorizontal</string>
</property>
<property name="toolTip">
<string>水平镜像</string>
</property>
</action>
<action name="actionMirrorVertical">
<property name="icon">
<iconset theme="object-flip-vertical">
<normaloff>:/MirrorVertical.png</normaloff>:/MirrorVertical.png</iconset>
</property>
<property name="text">
<string>MirrorVertical</string>
</property>
<property name="toolTip">
<string>垂直镜像</string>
</property>
</action>
<action name="action_gray">
<property name="text">
<string>灰度</string>
</property>
</action>
<action name="action_invert">
<property name="text">
<string>反色</string>
</property>
</action>
<action name="action_import">
<property name="text">
<string>导入图片</string>
</property>
<property name="shortcut">
<string>Ctrl+I</string>
</property>
</action>
<action name="action_blur">
<property name="text">
<string>模糊</string>
</property>
</action>
<action name="actionColorPicker">
<property name="checkable">
<bool>true</bool>
</property>
<property name="icon">
<iconset resource="res.qrc">
<normaloff>:/icon/color_picker.png</normaloff>:/icon/color_picker.png</iconset>
</property>
<property name="text">
<string>颜色拾取</string>
</property>
<property name="toolTip">
<string>颜色拾取</string>
</property>
</action>
<action name="actionArrow">
<property name="checkable">
<bool>true</bool>
</property>
<property name="icon">
<iconset resource="res.qrc">
<normaloff>:/icon/arrow.png</normaloff>:/icon/arrow.png</iconset>
</property>
<property name="text">
<string>箭头</string>
</property>
<property name="toolTip">
<string>箭头</string>
</property>
</action>
<action name="action_transparent">
<property name="text">
<string>颜色透明</string>
</property>
<property name="toolTip">
<string>颜色透明</string>
</property>
</action>
<action name="action_mosaic">
<property name="text">
<string>马赛克</string>
</property>
<property name="shortcut">
<string>Ctrl+M</string>
</property>
</action>
<action name="action_matting">
<property name="text">
<string>抠图</string>
</property>
</action>
<action name="action_adjustRGB">
<property name="text">
<string>调色</string>
</property>
<property name="toolTip">
<string>调色</string>
</property>
<property name="shortcut">
<string>Ctrl+B</string>
</property>
</action>
<action name="action_clipPath">
<property name="text">
<string>路径裁剪</string>
</property>
</action>
<action name="action_deleteBlackBorder">
<property name="text">
<string>去黑边</string>
</property>
</action>
<action name="action_clip">
<property name="text">
<string>裁剪</string>
</property>
</action>
<action name="action_brightness">
<property name="text">
<string>亮度</string>
</property>
</action>
<action name="action_contrast">
<property name="text">
<string>对比度</string>
</property>
</action>
<action name="action_cutBorder">
<property name="text">
<string>边缘裁剪</string>
</property>
</action>
<action name="action_dashPattern">
<property name="text">
<string>虚线样式</string>
</property>
</action>
<action name="action_polyline">
<property name="checkable">
<bool>true</bool>
</property>
<property name="icon">
<iconset resource="res.qrc">
<normaloff>:/icon/polyline.png</normaloff>:/icon/polyline.png</iconset>
</property>
<property name="text">
<string>polyline</string>
</property>
</action>
<action name="action_slice">
<property name="text">
<string>切割</string>
</property>
</action>
</widget>
<layoutdefault spacing="6" margin="11"/>
<resources>
<include location="res.qrc"/>
</resources>
<connections/>
</ui>