├── .gitignore ├── LICENSE ├── QtPaint.pro ├── README.md ├── background.bmp ├── brushtool.cpp ├── brushtool.h ├── colorlabel.cpp ├── colorlabel.h ├── ellipsetool.cpp ├── ellipsetool.h ├── erasertool.cpp ├── erasertool.h ├── floodfilltool.cpp ├── floodfilltool.h ├── icons ├── about.png ├── app.png ├── brush.png ├── clear.png ├── color-picker.png ├── color.png ├── copy.png ├── delete.png ├── down.png ├── ellipse.png ├── eraser.png ├── flip-horizontal.png ├── flip-vertical.png ├── layer-visible-off.png ├── layers.png ├── line.png ├── lines.png ├── new.png ├── open.png ├── paste.png ├── rectangle.png ├── redo.png ├── resize.png ├── rotate-left.png ├── rotate-right.png ├── save.png ├── undo.png ├── up.png ├── visible-off.png ├── visible-on.png ├── visible.png ├── zoom-in.png └── zoom-out.png ├── layer.cpp ├── layer.h ├── layerslist.cpp ├── layerslist.h ├── layerslist.ui ├── linetool.cpp ├── linetool.h ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── mainwindow.ui ├── newimagedialog.cpp ├── newimagedialog.h ├── newimagedialog.ui ├── paintarea.cpp ├── paintarea.h ├── painter.cpp ├── painter.h ├── paintevent.h ├── painttool.h ├── paintwidget.cpp ├── paintwidget.h ├── rectangletool.cpp ├── rectangletool.h ├── resizedialog.cpp ├── resizedialog.h ├── resizedialog.ui ├── resources.qrc ├── widthbutton.cpp ├── widthbutton.h ├── zoomslider.cpp ├── zoomslider.h └── zoomslider.ui /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/LICENSE -------------------------------------------------------------------------------- /QtPaint.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/QtPaint.pro -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/README.md -------------------------------------------------------------------------------- /background.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/background.bmp -------------------------------------------------------------------------------- /brushtool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/brushtool.cpp -------------------------------------------------------------------------------- /brushtool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/brushtool.h -------------------------------------------------------------------------------- /colorlabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/colorlabel.cpp -------------------------------------------------------------------------------- /colorlabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/colorlabel.h -------------------------------------------------------------------------------- /ellipsetool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/ellipsetool.cpp -------------------------------------------------------------------------------- /ellipsetool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/ellipsetool.h -------------------------------------------------------------------------------- /erasertool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/erasertool.cpp -------------------------------------------------------------------------------- /erasertool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/erasertool.h -------------------------------------------------------------------------------- /floodfilltool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/floodfilltool.cpp -------------------------------------------------------------------------------- /floodfilltool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/floodfilltool.h -------------------------------------------------------------------------------- /icons/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/icons/about.png -------------------------------------------------------------------------------- /icons/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/icons/app.png -------------------------------------------------------------------------------- /icons/brush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/icons/brush.png -------------------------------------------------------------------------------- /icons/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/icons/clear.png -------------------------------------------------------------------------------- /icons/color-picker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/icons/color-picker.png -------------------------------------------------------------------------------- /icons/color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/icons/color.png -------------------------------------------------------------------------------- /icons/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/icons/copy.png -------------------------------------------------------------------------------- /icons/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/icons/delete.png -------------------------------------------------------------------------------- /icons/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/icons/down.png -------------------------------------------------------------------------------- /icons/ellipse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/icons/ellipse.png -------------------------------------------------------------------------------- /icons/eraser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/icons/eraser.png -------------------------------------------------------------------------------- /icons/flip-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/icons/flip-horizontal.png -------------------------------------------------------------------------------- /icons/flip-vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/icons/flip-vertical.png -------------------------------------------------------------------------------- /icons/layer-visible-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/icons/layer-visible-off.png -------------------------------------------------------------------------------- /icons/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/icons/layers.png -------------------------------------------------------------------------------- /icons/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/icons/line.png -------------------------------------------------------------------------------- /icons/lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/icons/lines.png -------------------------------------------------------------------------------- /icons/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/icons/new.png -------------------------------------------------------------------------------- /icons/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/icons/open.png -------------------------------------------------------------------------------- /icons/paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/icons/paste.png -------------------------------------------------------------------------------- /icons/rectangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/icons/rectangle.png -------------------------------------------------------------------------------- /icons/redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/icons/redo.png -------------------------------------------------------------------------------- /icons/resize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/icons/resize.png -------------------------------------------------------------------------------- /icons/rotate-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/icons/rotate-left.png -------------------------------------------------------------------------------- /icons/rotate-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/icons/rotate-right.png -------------------------------------------------------------------------------- /icons/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/icons/save.png -------------------------------------------------------------------------------- /icons/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/icons/undo.png -------------------------------------------------------------------------------- /icons/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/icons/up.png -------------------------------------------------------------------------------- /icons/visible-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/icons/visible-off.png -------------------------------------------------------------------------------- /icons/visible-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/icons/visible-on.png -------------------------------------------------------------------------------- /icons/visible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/icons/visible.png -------------------------------------------------------------------------------- /icons/zoom-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/icons/zoom-in.png -------------------------------------------------------------------------------- /icons/zoom-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/icons/zoom-out.png -------------------------------------------------------------------------------- /layer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/layer.cpp -------------------------------------------------------------------------------- /layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/layer.h -------------------------------------------------------------------------------- /layerslist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/layerslist.cpp -------------------------------------------------------------------------------- /layerslist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/layerslist.h -------------------------------------------------------------------------------- /layerslist.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/layerslist.ui -------------------------------------------------------------------------------- /linetool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/linetool.cpp -------------------------------------------------------------------------------- /linetool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/linetool.h -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/main.cpp -------------------------------------------------------------------------------- /mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/mainwindow.cpp -------------------------------------------------------------------------------- /mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/mainwindow.h -------------------------------------------------------------------------------- /mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/mainwindow.ui -------------------------------------------------------------------------------- /newimagedialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/newimagedialog.cpp -------------------------------------------------------------------------------- /newimagedialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/newimagedialog.h -------------------------------------------------------------------------------- /newimagedialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/newimagedialog.ui -------------------------------------------------------------------------------- /paintarea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/paintarea.cpp -------------------------------------------------------------------------------- /paintarea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/paintarea.h -------------------------------------------------------------------------------- /painter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/painter.cpp -------------------------------------------------------------------------------- /painter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/painter.h -------------------------------------------------------------------------------- /paintevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/paintevent.h -------------------------------------------------------------------------------- /painttool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/painttool.h -------------------------------------------------------------------------------- /paintwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/paintwidget.cpp -------------------------------------------------------------------------------- /paintwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/paintwidget.h -------------------------------------------------------------------------------- /rectangletool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/rectangletool.cpp -------------------------------------------------------------------------------- /rectangletool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/rectangletool.h -------------------------------------------------------------------------------- /resizedialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/resizedialog.cpp -------------------------------------------------------------------------------- /resizedialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/resizedialog.h -------------------------------------------------------------------------------- /resizedialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/resizedialog.ui -------------------------------------------------------------------------------- /resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/resources.qrc -------------------------------------------------------------------------------- /widthbutton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/widthbutton.cpp -------------------------------------------------------------------------------- /widthbutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/widthbutton.h -------------------------------------------------------------------------------- /zoomslider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/zoomslider.cpp -------------------------------------------------------------------------------- /zoomslider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/zoomslider.h -------------------------------------------------------------------------------- /zoomslider.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cohee1207/QtPaint/HEAD/zoomslider.ui --------------------------------------------------------------------------------