├── .github ├── FUNDING.yml ├── scripts │ ├── build_kImageAnnotator.sh │ ├── linux │ │ └── setup_linux_build_variables.sh │ ├── setup_build_variables.sh │ ├── setup_googleTest.sh │ ├── setup_kColorPicker.sh │ └── windows │ │ └── setup_windows_build_variables.sh └── workflows │ ├── linux.yml │ └── windows.yml ├── .gitignore ├── CHANGELOG.md ├── CMakeLists.txt ├── LICENSE ├── README.md ├── cmake ├── cmake_uninstall.cmake.in └── kImageAnnotatorConfig.cmake.in ├── example ├── CMakeLists.txt └── main.cpp ├── include └── kImageAnnotator │ ├── KImageAnnotator.h │ └── KImageAnnotatorExport.h ├── resources ├── icons │ ├── dark │ │ ├── arrow.svg │ │ ├── blur.svg │ │ ├── bold.svg │ │ ├── border.svg │ │ ├── check.svg │ │ ├── color.svg │ │ ├── crop.svg │ │ ├── cut.svg │ │ ├── disabled.svg │ │ ├── doubleArrow.svg │ │ ├── dragHandle.svg │ │ ├── dropShadow.svg │ │ ├── duplicate.svg │ │ ├── effect.svg │ │ ├── ellipse.svg │ │ ├── fillType.svg │ │ ├── fillType_borderAndFill.svg │ │ ├── fillType_borderAndNoFill.svg │ │ ├── fillType_noBorderAndNoFill.svg │ │ ├── fitImage.svg │ │ ├── grayscale.svg │ │ ├── invertColor.svg │ │ ├── italic.svg │ │ ├── line.svg │ │ ├── markerEllipse.svg │ │ ├── markerPen.svg │ │ ├── markerRect.svg │ │ ├── modifycanvas.svg │ │ ├── number.svg │ │ ├── numberArrow.svg │ │ ├── numberPointer.svg │ │ ├── obfuscateFactor.svg │ │ ├── opacity.svg │ │ ├── pen.svg │ │ ├── pixelate.svg │ │ ├── rect.svg │ │ ├── redo.svg │ │ ├── resetZoom.svg │ │ ├── rotate.svg │ │ ├── scale.svg │ │ ├── select.svg │ │ ├── sticker.svg │ │ ├── text.svg │ │ ├── textArrow.svg │ │ ├── textColor.svg │ │ ├── textPointer.svg │ │ ├── underline.svg │ │ ├── undo.svg │ │ ├── width.svg │ │ └── zoom.svg │ └── light │ │ ├── arrow.svg │ │ ├── blur.svg │ │ ├── bold.svg │ │ ├── border.svg │ │ ├── check.svg │ │ ├── color.svg │ │ ├── crop.svg │ │ ├── cut.svg │ │ ├── disabled.svg │ │ ├── doubleArrow.svg │ │ ├── dragHandle.svg │ │ ├── dropShadow.svg │ │ ├── duplicate.svg │ │ ├── effect.svg │ │ ├── ellipse.svg │ │ ├── fillType.svg │ │ ├── fillType_borderAndFill.svg │ │ ├── fillType_borderAndNoFill.svg │ │ ├── fillType_noBorderAndNoFill.svg │ │ ├── fitImage.svg │ │ ├── grayscale.svg │ │ ├── invertColor.svg │ │ ├── italic.svg │ │ ├── line.svg │ │ ├── markerEllipse.svg │ │ ├── markerPen.svg │ │ ├── markerRect.svg │ │ ├── modifycanvas.svg │ │ ├── number.svg │ │ ├── numberArrow.svg │ │ ├── numberPointer.svg │ │ ├── obfuscateFactor.svg │ │ ├── opacity.svg │ │ ├── pen.svg │ │ ├── pixelate.svg │ │ ├── rect.svg │ │ ├── redo.svg │ │ ├── resetZoom.svg │ │ ├── rotate.svg │ │ ├── scale.svg │ │ ├── select.svg │ │ ├── sticker.svg │ │ ├── text.svg │ │ ├── textArrow.svg │ │ ├── textColor.svg │ │ ├── textPointer.svg │ │ ├── underline.svg │ │ ├── undo.svg │ │ ├── width.svg │ │ └── zoom.svg ├── kImageAnnotator_resources.qrc └── stickers │ ├── check_mark.svg │ ├── confused_face.svg │ ├── cross_mark.svg │ ├── cursor.svg │ ├── face_blowing_a_kiss.svg │ ├── face_savoring_food.svg │ ├── face_with_symbols_on_mouth.svg │ ├── grinning_face_with_big_eyes.svg │ ├── grinning_face_with_smiling_eyes.svg │ ├── grinning_face_with_sweat.svg │ ├── grinning_squinting_face.svg │ ├── hushed_face.svg │ ├── nerd_face.svg │ ├── neutral_face.svg │ ├── pouting_face.svg │ ├── smiling_face_with_heart_eyes.svg │ ├── smiling_face_with_hearts.svg │ └── smiling_face_with_sunglasses.svg ├── src ├── CMakeLists.txt ├── annotations │ ├── core │ │ ├── AbstractSettingsProvider.cpp │ │ ├── AbstractSettingsProvider.h │ │ ├── AnnotationArea.cpp │ │ ├── AnnotationArea.h │ │ ├── AnnotationItemFactory.cpp │ │ ├── AnnotationItemFactory.h │ │ ├── AnnotationPropertiesFactory.cpp │ │ ├── AnnotationPropertiesFactory.h │ │ ├── ISettingsListener.h │ │ ├── ZoomValueProvider.cpp │ │ ├── ZoomValueProvider.h │ │ └── imageEffects │ │ │ ├── BorderImageEffect.cpp │ │ │ ├── BorderImageEffect.h │ │ │ ├── DropShadowImageEffect.cpp │ │ │ ├── DropShadowImageEffect.h │ │ │ ├── GrayscaleImageEffect.cpp │ │ │ ├── GrayscaleImageEffect.h │ │ │ ├── ImageEffectFactory.cpp │ │ │ ├── ImageEffectFactory.h │ │ │ ├── InvertColorImageEffect.cpp │ │ │ ├── InvertColorImageEffect.h │ │ │ ├── NoImageEffect.cpp │ │ │ └── NoImageEffect.h │ ├── items │ │ ├── AbstractAnnotationItem.cpp │ │ ├── AbstractAnnotationItem.h │ │ ├── AbstractAnnotationLine.cpp │ │ ├── AbstractAnnotationLine.h │ │ ├── AbstractAnnotationObfuscate.cpp │ │ ├── AbstractAnnotationObfuscate.h │ │ ├── AbstractAnnotationPath.cpp │ │ ├── AbstractAnnotationPath.h │ │ ├── AbstractAnnotationPointerRect.cpp │ │ ├── AbstractAnnotationPointerRect.h │ │ ├── AbstractAnnotationRect.cpp │ │ ├── AbstractAnnotationRect.h │ │ ├── AnnotationArrow.cpp │ │ ├── AnnotationArrow.h │ │ ├── AnnotationBlur.cpp │ │ ├── AnnotationBlur.h │ │ ├── AnnotationDoubleArrow.cpp │ │ ├── AnnotationDoubleArrow.h │ │ ├── AnnotationDuplicate.cpp │ │ ├── AnnotationDuplicate.h │ │ ├── AnnotationEllipse.cpp │ │ ├── AnnotationEllipse.h │ │ ├── AnnotationImage.cpp │ │ ├── AnnotationImage.h │ │ ├── AnnotationLine.cpp │ │ ├── AnnotationLine.h │ │ ├── AnnotationMarkerEllipse.cpp │ │ ├── AnnotationMarkerEllipse.h │ │ ├── AnnotationMarkerPen.cpp │ │ ├── AnnotationMarkerPen.h │ │ ├── AnnotationMarkerRect.cpp │ │ ├── AnnotationMarkerRect.h │ │ ├── AnnotationNumber.cpp │ │ ├── AnnotationNumber.h │ │ ├── AnnotationNumberArrow.cpp │ │ ├── AnnotationNumberArrow.h │ │ ├── AnnotationNumberPointer.cpp │ │ ├── AnnotationNumberPointer.h │ │ ├── AnnotationPen.cpp │ │ ├── AnnotationPen.h │ │ ├── AnnotationPixelate.cpp │ │ ├── AnnotationPixelate.h │ │ ├── AnnotationRect.cpp │ │ ├── AnnotationRect.h │ │ ├── AnnotationSticker.cpp │ │ ├── AnnotationSticker.h │ │ ├── AnnotationText.cpp │ │ ├── AnnotationText.h │ │ ├── AnnotationTextArrow.cpp │ │ ├── AnnotationTextArrow.h │ │ ├── AnnotationTextPointer.cpp │ │ ├── AnnotationTextPointer.h │ │ ├── BaseAnnotationNumber.cpp │ │ ├── BaseAnnotationNumber.h │ │ ├── helper │ │ │ ├── AnnotationShapeCreator.cpp │ │ │ ├── AnnotationShapeCreator.h │ │ │ ├── NumberRectHelper.cpp │ │ │ └── NumberRectHelper.h │ │ ├── interfaces │ │ │ └── EditableItem.h │ │ └── text │ │ │ ├── AnnotationTextHandler.cpp │ │ │ ├── AnnotationTextHandler.h │ │ │ ├── CapsLockStatusChecker.cpp │ │ │ ├── CapsLockStatusChecker.h │ │ │ ├── KeyInputHelper.cpp │ │ │ ├── KeyInputHelper.h │ │ │ ├── TextCursor.cpp │ │ │ ├── TextCursor.h │ │ │ ├── TextHandlerItem.cpp │ │ │ └── TextHandlerItem.h │ ├── misc │ │ ├── AbstractCloneableItemEffect.cpp │ │ ├── AbstractCloneableItemEffect.h │ │ ├── AnnotationContextMenu.cpp │ │ ├── AnnotationContextMenu.h │ │ ├── AnnotationItemClipboard.cpp │ │ ├── AnnotationItemClipboard.h │ │ ├── CanvasPainter.cpp │ │ ├── CanvasPainter.h │ │ ├── ImageBlurrer.cpp │ │ ├── ImageBlurrer.h │ │ ├── NumberManager.cpp │ │ ├── NumberManager.h │ │ └── itemEffects │ │ │ ├── NoEffect.cpp │ │ │ ├── NoEffect.h │ │ │ ├── ShadowEffect.cpp │ │ │ └── ShadowEffect.h │ ├── modifiers │ │ ├── AnnotationItemArranger.cpp │ │ ├── AnnotationItemArranger.h │ │ ├── AnnotationItemEditor.cpp │ │ ├── AnnotationItemEditor.h │ │ ├── AnnotationItemModifier.cpp │ │ ├── AnnotationItemModifier.h │ │ ├── AnnotationItemMover.cpp │ │ ├── AnnotationItemMover.h │ │ ├── AnnotationItemResizer.cpp │ │ ├── AnnotationItemResizer.h │ │ ├── AnnotationItemSelector.cpp │ │ ├── AnnotationItemSelector.h │ │ ├── AnnotationMultiItemResizer.cpp │ │ ├── AnnotationMultiItemResizer.h │ │ └── resizeHandles │ │ │ ├── AbstractItemResizeHandles.cpp │ │ │ ├── AbstractItemResizeHandles.h │ │ │ ├── AbstractRectResizeHandles.cpp │ │ │ ├── AbstractRectResizeHandles.h │ │ │ ├── LineResizeHandles.cpp │ │ │ ├── LineResizeHandles.h │ │ │ ├── PathResizeHandles.cpp │ │ │ ├── PathResizeHandles.h │ │ │ ├── PointerRectResizeHandles.cpp │ │ │ ├── PointerRectResizeHandles.h │ │ │ ├── RectResizeHandles.cpp │ │ │ ├── RectResizeHandles.h │ │ │ ├── ResizeHandle.cpp │ │ │ ├── ResizeHandle.h │ │ │ ├── ResizeHandlesFactory.cpp │ │ │ └── ResizeHandlesFactory.h │ ├── properties │ │ ├── AnnotationObfuscateProperties.cpp │ │ ├── AnnotationObfuscateProperties.h │ │ ├── AnnotationPathProperties.cpp │ │ ├── AnnotationPathProperties.h │ │ ├── AnnotationProperties.cpp │ │ ├── AnnotationProperties.h │ │ ├── AnnotationStickerProperties.cpp │ │ ├── AnnotationStickerProperties.h │ │ ├── AnnotationTextProperties.cpp │ │ └── AnnotationTextProperties.h │ └── undo │ │ ├── AddCommand.cpp │ │ ├── AddCommand.h │ │ ├── ArrangeCommand.cpp │ │ ├── ArrangeCommand.h │ │ ├── ChangePropertiesCommand.cpp │ │ ├── ChangePropertiesCommand.h │ │ ├── CropCommand.cpp │ │ ├── CropCommand.h │ │ ├── CutCommand.cpp │ │ ├── CutCommand.h │ │ ├── DeleteCommand.cpp │ │ ├── DeleteCommand.h │ │ ├── FlipCommand.cpp │ │ ├── FlipCommand.h │ │ ├── ModifyCanvasCommand.cpp │ │ ├── ModifyCanvasCommand.h │ │ ├── MoveCommand.cpp │ │ ├── MoveCommand.h │ │ ├── PasteCommand.cpp │ │ ├── PasteCommand.h │ │ ├── ResizeCommand.cpp │ │ ├── ResizeCommand.h │ │ ├── RotateCommand.cpp │ │ ├── RotateCommand.h │ │ ├── ScaleCommand.cpp │ │ ├── ScaleCommand.h │ │ ├── UndoStack.cpp │ │ └── UndoStack.h ├── backend │ ├── Config.cpp │ ├── Config.h │ ├── ISettings.h │ ├── SettingsAdapter.cpp │ └── SettingsAdapter.h ├── common │ ├── constants │ │ └── Constants.h │ ├── enum │ │ ├── DesktopEnvironmentType.h │ │ ├── FillModes.h │ │ ├── FlipDirection.h │ │ ├── ImageEffects.h │ │ ├── NumberUpdateMode.h │ │ └── Tools.h │ ├── filter │ │ ├── IKeyEventListener.h │ │ ├── IgnoreShortcutsFilter.cpp │ │ ├── IgnoreShortcutsFilter.h │ │ ├── KeyEventFilter.cpp │ │ └── KeyEventFilter.h │ ├── helper │ │ ├── ConfigNameHelper.cpp │ │ ├── ConfigNameHelper.h │ │ ├── CursorHelper.cpp │ │ ├── CursorHelper.h │ │ ├── DesktopEnvironmentChecker.cpp │ │ ├── DesktopEnvironmentChecker.h │ │ ├── IconLoader.cpp │ │ ├── IconLoader.h │ │ ├── ItemHelper.cpp │ │ ├── ItemHelper.h │ │ ├── KeyHelper.cpp │ │ ├── KeyHelper.h │ │ ├── MathHelper.cpp │ │ ├── MathHelper.h │ │ ├── PathHelper.cpp │ │ ├── PathHelper.h │ │ ├── RectSizeHelper.cpp │ │ ├── RectSizeHelper.h │ │ ├── ShapeHelper.cpp │ │ └── ShapeHelper.h │ ├── platform │ │ ├── PlatformChecker.cpp │ │ └── PlatformChecker.h │ └── provider │ │ ├── DevicePixelRatioScaler.cpp │ │ ├── DevicePixelRatioScaler.h │ │ ├── IDevicePixelRatioScaler.h │ │ ├── ScaledSizeProvider.cpp │ │ └── ScaledSizeProvider.h ├── gui │ ├── CoreView.cpp │ ├── CoreView.h │ ├── KImageAnnotator.cpp │ ├── annotator │ │ ├── AnnotationView.cpp │ │ ├── AnnotationView.h │ │ ├── AnnotationWidget.cpp │ │ ├── AnnotationWidget.h │ │ ├── docks │ │ │ ├── AbstractAnnotationDockWidgetContent.cpp │ │ │ ├── AbstractAnnotationDockWidgetContent.h │ │ │ ├── AnnotationDockWidget.cpp │ │ │ ├── AnnotationDockWidget.h │ │ │ ├── AnnotationDockWidgetDragHandle.cpp │ │ │ └── AnnotationDockWidgetDragHandle.h │ │ ├── settings │ │ │ ├── AnnotationControlsWidget.cpp │ │ │ ├── AnnotationControlsWidget.h │ │ │ ├── AnnotationGeneralSettings.cpp │ │ │ ├── AnnotationGeneralSettings.h │ │ │ ├── AnnotationImageSettings.cpp │ │ │ ├── AnnotationImageSettings.h │ │ │ ├── AnnotationItemSettings.cpp │ │ │ ├── AnnotationItemSettings.h │ │ │ ├── AnnotationSettingsAdapter.cpp │ │ │ ├── AnnotationSettingsAdapter.h │ │ │ ├── AnnotationToolSelection.cpp │ │ │ ├── AnnotationToolSelection.h │ │ │ ├── ExistingItemEditInfo.h │ │ │ ├── ItemSettingsWidgetConfigurator.cpp │ │ │ └── ItemSettingsWidgetConfigurator.h │ │ └── tabs │ │ │ ├── AnnotationTabClickEventFilter.cpp │ │ │ ├── AnnotationTabClickEventFilter.h │ │ │ ├── AnnotationTabCloser.cpp │ │ │ ├── AnnotationTabCloser.h │ │ │ ├── AnnotationTabContent.cpp │ │ │ ├── AnnotationTabContent.h │ │ │ ├── AnnotationTabContextMenu.cpp │ │ │ ├── AnnotationTabContextMenu.h │ │ │ ├── AnnotationTabWidget.cpp │ │ │ └── AnnotationTabWidget.h │ ├── canvasModifier │ │ ├── ModifyCanvasSelectionRestrictor.cpp │ │ ├── ModifyCanvasSelectionRestrictor.h │ │ ├── ModifyCanvasView.cpp │ │ ├── ModifyCanvasView.h │ │ ├── ModifyCanvasWidget.cpp │ │ └── ModifyCanvasWidget.h │ ├── cropper │ │ ├── CropSelectionRestrictor.cpp │ │ ├── CropSelectionRestrictor.h │ │ ├── CropView.cpp │ │ ├── CropView.h │ │ ├── CropWidget.cpp │ │ └── CropWidget.h │ ├── cutter │ │ ├── CutSelectionRestrictor.cpp │ │ ├── CutSelectionRestrictor.h │ │ ├── CutView.cpp │ │ ├── CutView.h │ │ ├── CutWidget.cpp │ │ └── CutWidget.h │ ├── rotator │ │ ├── RotateDialog.cpp │ │ ├── RotateDialog.h │ │ ├── RotateWidget.cpp │ │ └── RotateWidget.h │ ├── scaler │ │ ├── ScaleDialog.cpp │ │ ├── ScaleDialog.h │ │ ├── ScaleSizeHandler.cpp │ │ ├── ScaleSizeHandler.h │ │ ├── ScaleWidget.cpp │ │ └── ScaleWidget.h │ ├── scrollAndZoomView │ │ ├── ScrollAndZoomView.cpp │ │ ├── ScrollAndZoomView.h │ │ ├── ViewZoomer.cpp │ │ └── ViewZoomer.h │ └── selection │ │ ├── BaseSelectionHandles.cpp │ │ ├── BaseSelectionHandles.h │ │ ├── BaseSelectionView.cpp │ │ ├── BaseSelectionView.h │ │ ├── ISelectionHandles.h │ │ ├── ISelectionRestrictor.h │ │ ├── SelectionHandler.cpp │ │ ├── SelectionHandler.h │ │ ├── SelectionHandlesAll.cpp │ │ ├── SelectionHandlesAll.h │ │ ├── SelectionHandlesHorizontal.cpp │ │ ├── SelectionHandlesHorizontal.h │ │ ├── SelectionHandlesVertical.cpp │ │ ├── SelectionHandlesVertical.h │ │ ├── SelectionMoveHelper.cpp │ │ └── SelectionMoveHelper.h └── widgets │ ├── ColorDialogButton.cpp │ ├── ColorDialogButton.h │ ├── Controls.cpp │ ├── Controls.h │ ├── CustomFontComboBox.cpp │ ├── CustomFontComboBox.h │ ├── CustomSpinBox.cpp │ ├── CustomSpinBox.h │ ├── CustomToolButton.cpp │ ├── CustomToolButton.h │ ├── CustomToolButtonAction.cpp │ ├── CustomToolButtonAction.h │ ├── ToggleButton.cpp │ ├── ToggleButton.h │ ├── ToolPicker.cpp │ ├── ToolPicker.h │ ├── menuButtons │ ├── GridMenu.cpp │ ├── GridMenu.h │ ├── GridMenuButton.cpp │ ├── GridMenuButton.h │ ├── GridMenuToolButton.cpp │ ├── GridMenuToolButton.h │ ├── ListItemGroup.cpp │ ├── ListItemGroup.h │ ├── ListMenu.cpp │ ├── ListMenu.h │ ├── ListMenuItem.cpp │ ├── ListMenuItem.h │ ├── ListMenuToolButton.cpp │ └── ListMenuToolButton.h │ ├── misc │ ├── AbstractExpandingWidget.cpp │ ├── AbstractExpandingWidget.h │ ├── AttachedSeparator.cpp │ ├── AttachedSeparator.h │ ├── FlowLayout.cpp │ └── FlowLayout.h │ └── settingsPicker │ ├── BoolPicker.cpp │ ├── BoolPicker.h │ ├── ColorPicker.cpp │ ├── ColorPicker.h │ ├── FillModePicker.cpp │ ├── FillModePicker.h │ ├── FontPicker.cpp │ ├── FontPicker.h │ ├── ImageEffectPicker.cpp │ ├── ImageEffectPicker.h │ ├── NumberPicker.cpp │ ├── NumberPicker.h │ ├── SettingsPickerWidget.cpp │ ├── SettingsPickerWidget.h │ ├── StickerPicker.cpp │ ├── StickerPicker.h │ ├── ZoomPicker.cpp │ └── ZoomPicker.h ├── tests ├── CMakeLists.txt ├── annotations │ ├── core │ │ ├── AnnotationAreaTest.cpp │ │ ├── AnnotationAreaTest.h │ │ ├── AnnotationItemFactoryTest.cpp │ │ ├── AnnotationItemFactoryTest.h │ │ ├── AnnotationPropertiesFactoryTest.cpp │ │ └── AnnotationPropertiesFactoryTest.h │ ├── items │ │ └── helper │ │ │ ├── KeyInputHelperTest.cpp │ │ │ ├── KeyInputHelperTest.h │ │ │ ├── TextCursorTest.cpp │ │ │ └── TextCursorTest.h │ ├── misc │ │ ├── AnnotationItemClipboardTest.cpp │ │ ├── AnnotationItemClipboardTest.h │ │ ├── NumberManagerTest.cpp │ │ └── NumberManagerTest.h │ ├── modifiers │ │ ├── AnnotationItemArrangerTest.cpp │ │ ├── AnnotationItemArrangerTest.h │ │ ├── AnnotationItemModifierTest.cpp │ │ ├── AnnotationItemModifierTest.h │ │ ├── AnnotationItemMoverTest.cpp │ │ ├── AnnotationItemMoverTest.h │ │ ├── AnnotationItemResizerTest.cpp │ │ ├── AnnotationItemResizerTest.h │ │ ├── AnnotationItemSelectorTest.cpp │ │ ├── AnnotationItemSelectorTest.h │ │ ├── AnnotationMultiItemResizerTest.cpp │ │ ├── AnnotationMultiItemResizerTest.h │ │ └── resizeHandles │ │ │ ├── LineResizeHandlesTest.cpp │ │ │ ├── LineResizeHandlesTest.h │ │ │ ├── PointerRectResizeHandlesTest.cpp │ │ │ ├── PointerRectResizeHandlesTest.h │ │ │ ├── RectResizeHandlesTest.cpp │ │ │ └── RectResizeHandlesTest.h │ └── undo │ │ ├── AddCommandTest.cpp │ │ ├── AddCommandTest.h │ │ ├── ArrangeCommandTest.cpp │ │ ├── ArrangeCommandTest.h │ │ ├── CropCommandTest.cpp │ │ ├── CropCommandTest.h │ │ ├── DeleteCommandTest.cpp │ │ ├── DeleteCommandTest.h │ │ ├── ModifyCanvasCommandTest.cpp │ │ ├── ModifyCanvasCommandTest.h │ │ ├── MoveCommandTest.cpp │ │ ├── MoveCommandTest.h │ │ ├── PasteCommandTest.cpp │ │ ├── PasteCommandTest.h │ │ ├── ResizeCommandTest.cpp │ │ ├── ResizeCommandTest.h │ │ ├── RotateCommandTest.cpp │ │ ├── RotateCommandTest.h │ │ ├── ScaleCommandTest.cpp │ │ └── ScaleCommandTest.h ├── backend │ ├── ConfigTest.cpp │ └── ConfigTest.h ├── common │ └── helper │ │ ├── ItemHelperTest.cpp │ │ ├── ItemHelperTest.h │ │ ├── KeyHelperTest.cpp │ │ ├── KeyHelperTest.h │ │ ├── MathHelperTest.cpp │ │ ├── MathHelperTest.h │ │ ├── PathHelperTest.cpp │ │ ├── PathHelperTest.h │ │ ├── ShapeHelperTest.cpp │ │ └── ShapeHelperTest.h ├── gui │ ├── annotator │ │ └── tabs │ │ │ ├── AnnotationTabCloserTest.cpp │ │ │ ├── AnnotationTabCloserTest.h │ │ │ ├── AnnotationTabContextMenuTest.cpp │ │ │ └── AnnotationTabContextMenuTest.h │ ├── canvasModifier │ │ ├── ModifyCanvasSelectionRestrictorTest.cpp │ │ └── ModifyCanvasSelectionRestrictorTest.h │ ├── cropper │ │ ├── CropSelectionRestrictorTest.cpp │ │ └── CropSelectionRestrictorTest.h │ ├── scaler │ │ ├── ScaleSizeHandlerTest.cpp │ │ └── ScaleSizeHandlerTest.h │ └── selection │ │ ├── SelectionHandlerTest.cpp │ │ ├── SelectionHandlerTest.h │ │ ├── SelectionHandlesAllTest.cpp │ │ ├── SelectionHandlesAllTest.h │ │ ├── SelectionMoveHelperTest.cpp │ │ └── SelectionMoveHelperTest.h ├── mocks │ ├── MockDefaultParameters.h │ ├── MockDevicePixelRatioScaler.cpp │ ├── MockDevicePixelRatioScaler.h │ ├── MockSelectionRestrictor.cpp │ ├── MockSelectionRestrictor.h │ ├── MockSettingsProvider.cpp │ ├── MockSettingsProvider.h │ ├── MockZoomValueProvider.cpp │ ├── MockZoomValueProvider.h │ ├── backend │ │ └── SettingsMock.h │ └── gui │ │ └── selection │ │ └── SelectionHandlesMock.h ├── utils │ └── TestRunner.h └── widgets │ ├── CustomSpinBoxTest.cpp │ ├── CustomSpinBoxTest.h │ ├── misc │ ├── AttachedSeparatorTest.cpp │ └── AttachedSeparatorTest.h │ └── settingsPicker │ ├── ColorPickerTest.cpp │ ├── ColorPickerTest.h │ ├── FillModePickerTest.cpp │ ├── FillModePickerTest.h │ ├── ImageEffectPickerTest.cpp │ ├── ImageEffectPickerTest.h │ ├── NumberPickerTest.cpp │ ├── NumberPickerTest.h │ ├── StickerPickerTest.cpp │ ├── StickerPickerTest.h │ ├── ToolPickerTest.cpp │ ├── ToolPickerTest.h │ ├── ZoomPickerTest.cpp │ └── ZoomPickerTest.h └── translations ├── CMakeLists.txt ├── kImageAnnotator_ar.ts ├── kImageAnnotator_bg.ts ├── kImageAnnotator_ca.ts ├── kImageAnnotator_cs.ts ├── kImageAnnotator_da.ts ├── kImageAnnotator_de.ts ├── kImageAnnotator_el.ts ├── kImageAnnotator_es.ts ├── kImageAnnotator_et.ts ├── kImageAnnotator_eu.ts ├── kImageAnnotator_fr.ts ├── kImageAnnotator_fr_CA.ts ├── kImageAnnotator_gl.ts ├── kImageAnnotator_hr.ts ├── kImageAnnotator_hu.ts ├── kImageAnnotator_id.ts ├── kImageAnnotator_it.ts ├── kImageAnnotator_ja.ts ├── kImageAnnotator_ko.ts ├── kImageAnnotator_nl.ts ├── kImageAnnotator_no.ts ├── kImageAnnotator_pl.ts ├── kImageAnnotator_pt.ts ├── kImageAnnotator_pt_BR.ts ├── kImageAnnotator_ro.ts ├── kImageAnnotator_ru.ts ├── kImageAnnotator_si.ts ├── kImageAnnotator_sq.ts ├── kImageAnnotator_sv.ts ├── kImageAnnotator_ta.ts ├── kImageAnnotator_tr.ts ├── kImageAnnotator_uk.ts └── kImageAnnotator_zh_CN.ts /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/scripts/build_kImageAnnotator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/.github/scripts/build_kImageAnnotator.sh -------------------------------------------------------------------------------- /.github/scripts/linux/setup_linux_build_variables.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/.github/scripts/linux/setup_linux_build_variables.sh -------------------------------------------------------------------------------- /.github/scripts/setup_build_variables.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/.github/scripts/setup_build_variables.sh -------------------------------------------------------------------------------- /.github/scripts/setup_googleTest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/.github/scripts/setup_googleTest.sh -------------------------------------------------------------------------------- /.github/scripts/setup_kColorPicker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/.github/scripts/setup_kColorPicker.sh -------------------------------------------------------------------------------- /.github/scripts/windows/setup_windows_build_variables.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/.github/scripts/windows/setup_windows_build_variables.sh -------------------------------------------------------------------------------- /.github/workflows/linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/.github/workflows/linux.yml -------------------------------------------------------------------------------- /.github/workflows/windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/.github/workflows/windows.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/README.md -------------------------------------------------------------------------------- /cmake/cmake_uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/cmake/cmake_uninstall.cmake.in -------------------------------------------------------------------------------- /cmake/kImageAnnotatorConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/cmake/kImageAnnotatorConfig.cmake.in -------------------------------------------------------------------------------- /example/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/example/CMakeLists.txt -------------------------------------------------------------------------------- /example/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/example/main.cpp -------------------------------------------------------------------------------- /include/kImageAnnotator/KImageAnnotator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/include/kImageAnnotator/KImageAnnotator.h -------------------------------------------------------------------------------- /include/kImageAnnotator/KImageAnnotatorExport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/include/kImageAnnotator/KImageAnnotatorExport.h -------------------------------------------------------------------------------- /resources/icons/dark/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/dark/arrow.svg -------------------------------------------------------------------------------- /resources/icons/dark/blur.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/dark/blur.svg -------------------------------------------------------------------------------- /resources/icons/dark/bold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/dark/bold.svg -------------------------------------------------------------------------------- /resources/icons/dark/border.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/dark/border.svg -------------------------------------------------------------------------------- /resources/icons/dark/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/dark/check.svg -------------------------------------------------------------------------------- /resources/icons/dark/color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/dark/color.svg -------------------------------------------------------------------------------- /resources/icons/dark/crop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/dark/crop.svg -------------------------------------------------------------------------------- /resources/icons/dark/cut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/dark/cut.svg -------------------------------------------------------------------------------- /resources/icons/dark/disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/dark/disabled.svg -------------------------------------------------------------------------------- /resources/icons/dark/doubleArrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/dark/doubleArrow.svg -------------------------------------------------------------------------------- /resources/icons/dark/dragHandle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/dark/dragHandle.svg -------------------------------------------------------------------------------- /resources/icons/dark/dropShadow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/dark/dropShadow.svg -------------------------------------------------------------------------------- /resources/icons/dark/duplicate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/dark/duplicate.svg -------------------------------------------------------------------------------- /resources/icons/dark/effect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/dark/effect.svg -------------------------------------------------------------------------------- /resources/icons/dark/ellipse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/dark/ellipse.svg -------------------------------------------------------------------------------- /resources/icons/dark/fillType.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/dark/fillType.svg -------------------------------------------------------------------------------- /resources/icons/dark/fillType_borderAndFill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/dark/fillType_borderAndFill.svg -------------------------------------------------------------------------------- /resources/icons/dark/fillType_borderAndNoFill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/dark/fillType_borderAndNoFill.svg -------------------------------------------------------------------------------- /resources/icons/dark/fillType_noBorderAndNoFill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/dark/fillType_noBorderAndNoFill.svg -------------------------------------------------------------------------------- /resources/icons/dark/fitImage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/dark/fitImage.svg -------------------------------------------------------------------------------- /resources/icons/dark/grayscale.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/dark/grayscale.svg -------------------------------------------------------------------------------- /resources/icons/dark/invertColor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/dark/invertColor.svg -------------------------------------------------------------------------------- /resources/icons/dark/italic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/dark/italic.svg -------------------------------------------------------------------------------- /resources/icons/dark/line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/dark/line.svg -------------------------------------------------------------------------------- /resources/icons/dark/markerEllipse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/dark/markerEllipse.svg -------------------------------------------------------------------------------- /resources/icons/dark/markerPen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/dark/markerPen.svg -------------------------------------------------------------------------------- /resources/icons/dark/markerRect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/dark/markerRect.svg -------------------------------------------------------------------------------- /resources/icons/dark/modifycanvas.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/dark/modifycanvas.svg -------------------------------------------------------------------------------- /resources/icons/dark/number.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/dark/number.svg -------------------------------------------------------------------------------- /resources/icons/dark/numberArrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/dark/numberArrow.svg -------------------------------------------------------------------------------- /resources/icons/dark/numberPointer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/dark/numberPointer.svg -------------------------------------------------------------------------------- /resources/icons/dark/obfuscateFactor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/dark/obfuscateFactor.svg -------------------------------------------------------------------------------- /resources/icons/dark/opacity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/dark/opacity.svg -------------------------------------------------------------------------------- /resources/icons/dark/pen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/dark/pen.svg -------------------------------------------------------------------------------- /resources/icons/dark/pixelate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/dark/pixelate.svg -------------------------------------------------------------------------------- /resources/icons/dark/rect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/dark/rect.svg -------------------------------------------------------------------------------- /resources/icons/dark/redo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/dark/redo.svg -------------------------------------------------------------------------------- /resources/icons/dark/resetZoom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/dark/resetZoom.svg -------------------------------------------------------------------------------- /resources/icons/dark/rotate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/dark/rotate.svg -------------------------------------------------------------------------------- /resources/icons/dark/scale.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/dark/scale.svg -------------------------------------------------------------------------------- /resources/icons/dark/select.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/dark/select.svg -------------------------------------------------------------------------------- /resources/icons/dark/sticker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/dark/sticker.svg -------------------------------------------------------------------------------- /resources/icons/dark/text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/dark/text.svg -------------------------------------------------------------------------------- /resources/icons/dark/textArrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/dark/textArrow.svg -------------------------------------------------------------------------------- /resources/icons/dark/textColor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/dark/textColor.svg -------------------------------------------------------------------------------- /resources/icons/dark/textPointer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/dark/textPointer.svg -------------------------------------------------------------------------------- /resources/icons/dark/underline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/dark/underline.svg -------------------------------------------------------------------------------- /resources/icons/dark/undo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/dark/undo.svg -------------------------------------------------------------------------------- /resources/icons/dark/width.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/dark/width.svg -------------------------------------------------------------------------------- /resources/icons/dark/zoom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/dark/zoom.svg -------------------------------------------------------------------------------- /resources/icons/light/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/light/arrow.svg -------------------------------------------------------------------------------- /resources/icons/light/blur.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/light/blur.svg -------------------------------------------------------------------------------- /resources/icons/light/bold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/light/bold.svg -------------------------------------------------------------------------------- /resources/icons/light/border.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/light/border.svg -------------------------------------------------------------------------------- /resources/icons/light/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/light/check.svg -------------------------------------------------------------------------------- /resources/icons/light/color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/light/color.svg -------------------------------------------------------------------------------- /resources/icons/light/crop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/light/crop.svg -------------------------------------------------------------------------------- /resources/icons/light/cut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/light/cut.svg -------------------------------------------------------------------------------- /resources/icons/light/disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/light/disabled.svg -------------------------------------------------------------------------------- /resources/icons/light/doubleArrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/light/doubleArrow.svg -------------------------------------------------------------------------------- /resources/icons/light/dragHandle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/light/dragHandle.svg -------------------------------------------------------------------------------- /resources/icons/light/dropShadow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/light/dropShadow.svg -------------------------------------------------------------------------------- /resources/icons/light/duplicate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/light/duplicate.svg -------------------------------------------------------------------------------- /resources/icons/light/effect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/light/effect.svg -------------------------------------------------------------------------------- /resources/icons/light/ellipse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/light/ellipse.svg -------------------------------------------------------------------------------- /resources/icons/light/fillType.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/light/fillType.svg -------------------------------------------------------------------------------- /resources/icons/light/fillType_borderAndFill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/light/fillType_borderAndFill.svg -------------------------------------------------------------------------------- /resources/icons/light/fillType_borderAndNoFill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/light/fillType_borderAndNoFill.svg -------------------------------------------------------------------------------- /resources/icons/light/fillType_noBorderAndNoFill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/light/fillType_noBorderAndNoFill.svg -------------------------------------------------------------------------------- /resources/icons/light/fitImage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/light/fitImage.svg -------------------------------------------------------------------------------- /resources/icons/light/grayscale.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/light/grayscale.svg -------------------------------------------------------------------------------- /resources/icons/light/invertColor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/light/invertColor.svg -------------------------------------------------------------------------------- /resources/icons/light/italic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/light/italic.svg -------------------------------------------------------------------------------- /resources/icons/light/line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/light/line.svg -------------------------------------------------------------------------------- /resources/icons/light/markerEllipse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/light/markerEllipse.svg -------------------------------------------------------------------------------- /resources/icons/light/markerPen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/light/markerPen.svg -------------------------------------------------------------------------------- /resources/icons/light/markerRect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/light/markerRect.svg -------------------------------------------------------------------------------- /resources/icons/light/modifycanvas.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/light/modifycanvas.svg -------------------------------------------------------------------------------- /resources/icons/light/number.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/light/number.svg -------------------------------------------------------------------------------- /resources/icons/light/numberArrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/light/numberArrow.svg -------------------------------------------------------------------------------- /resources/icons/light/numberPointer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/light/numberPointer.svg -------------------------------------------------------------------------------- /resources/icons/light/obfuscateFactor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/light/obfuscateFactor.svg -------------------------------------------------------------------------------- /resources/icons/light/opacity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/light/opacity.svg -------------------------------------------------------------------------------- /resources/icons/light/pen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/light/pen.svg -------------------------------------------------------------------------------- /resources/icons/light/pixelate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/light/pixelate.svg -------------------------------------------------------------------------------- /resources/icons/light/rect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/light/rect.svg -------------------------------------------------------------------------------- /resources/icons/light/redo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/light/redo.svg -------------------------------------------------------------------------------- /resources/icons/light/resetZoom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/light/resetZoom.svg -------------------------------------------------------------------------------- /resources/icons/light/rotate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/light/rotate.svg -------------------------------------------------------------------------------- /resources/icons/light/scale.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/light/scale.svg -------------------------------------------------------------------------------- /resources/icons/light/select.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/light/select.svg -------------------------------------------------------------------------------- /resources/icons/light/sticker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/light/sticker.svg -------------------------------------------------------------------------------- /resources/icons/light/text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/light/text.svg -------------------------------------------------------------------------------- /resources/icons/light/textArrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/light/textArrow.svg -------------------------------------------------------------------------------- /resources/icons/light/textColor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/light/textColor.svg -------------------------------------------------------------------------------- /resources/icons/light/textPointer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/light/textPointer.svg -------------------------------------------------------------------------------- /resources/icons/light/underline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/light/underline.svg -------------------------------------------------------------------------------- /resources/icons/light/undo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/light/undo.svg -------------------------------------------------------------------------------- /resources/icons/light/width.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/light/width.svg -------------------------------------------------------------------------------- /resources/icons/light/zoom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/icons/light/zoom.svg -------------------------------------------------------------------------------- /resources/kImageAnnotator_resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/kImageAnnotator_resources.qrc -------------------------------------------------------------------------------- /resources/stickers/check_mark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/stickers/check_mark.svg -------------------------------------------------------------------------------- /resources/stickers/confused_face.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/stickers/confused_face.svg -------------------------------------------------------------------------------- /resources/stickers/cross_mark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/stickers/cross_mark.svg -------------------------------------------------------------------------------- /resources/stickers/cursor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/stickers/cursor.svg -------------------------------------------------------------------------------- /resources/stickers/face_blowing_a_kiss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/stickers/face_blowing_a_kiss.svg -------------------------------------------------------------------------------- /resources/stickers/face_savoring_food.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/stickers/face_savoring_food.svg -------------------------------------------------------------------------------- /resources/stickers/face_with_symbols_on_mouth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/stickers/face_with_symbols_on_mouth.svg -------------------------------------------------------------------------------- /resources/stickers/grinning_face_with_big_eyes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/stickers/grinning_face_with_big_eyes.svg -------------------------------------------------------------------------------- /resources/stickers/grinning_face_with_smiling_eyes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/stickers/grinning_face_with_smiling_eyes.svg -------------------------------------------------------------------------------- /resources/stickers/grinning_face_with_sweat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/stickers/grinning_face_with_sweat.svg -------------------------------------------------------------------------------- /resources/stickers/grinning_squinting_face.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/stickers/grinning_squinting_face.svg -------------------------------------------------------------------------------- /resources/stickers/hushed_face.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/stickers/hushed_face.svg -------------------------------------------------------------------------------- /resources/stickers/nerd_face.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/stickers/nerd_face.svg -------------------------------------------------------------------------------- /resources/stickers/neutral_face.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/stickers/neutral_face.svg -------------------------------------------------------------------------------- /resources/stickers/pouting_face.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/stickers/pouting_face.svg -------------------------------------------------------------------------------- /resources/stickers/smiling_face_with_heart_eyes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/stickers/smiling_face_with_heart_eyes.svg -------------------------------------------------------------------------------- /resources/stickers/smiling_face_with_hearts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/stickers/smiling_face_with_hearts.svg -------------------------------------------------------------------------------- /resources/stickers/smiling_face_with_sunglasses.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/resources/stickers/smiling_face_with_sunglasses.svg -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/annotations/core/AbstractSettingsProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/core/AbstractSettingsProvider.cpp -------------------------------------------------------------------------------- /src/annotations/core/AbstractSettingsProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/core/AbstractSettingsProvider.h -------------------------------------------------------------------------------- /src/annotations/core/AnnotationArea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/core/AnnotationArea.cpp -------------------------------------------------------------------------------- /src/annotations/core/AnnotationArea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/core/AnnotationArea.h -------------------------------------------------------------------------------- /src/annotations/core/AnnotationItemFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/core/AnnotationItemFactory.cpp -------------------------------------------------------------------------------- /src/annotations/core/AnnotationItemFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/core/AnnotationItemFactory.h -------------------------------------------------------------------------------- /src/annotations/core/AnnotationPropertiesFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/core/AnnotationPropertiesFactory.cpp -------------------------------------------------------------------------------- /src/annotations/core/AnnotationPropertiesFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/core/AnnotationPropertiesFactory.h -------------------------------------------------------------------------------- /src/annotations/core/ISettingsListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/core/ISettingsListener.h -------------------------------------------------------------------------------- /src/annotations/core/ZoomValueProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/core/ZoomValueProvider.cpp -------------------------------------------------------------------------------- /src/annotations/core/ZoomValueProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/core/ZoomValueProvider.h -------------------------------------------------------------------------------- /src/annotations/core/imageEffects/BorderImageEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/core/imageEffects/BorderImageEffect.cpp -------------------------------------------------------------------------------- /src/annotations/core/imageEffects/BorderImageEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/core/imageEffects/BorderImageEffect.h -------------------------------------------------------------------------------- /src/annotations/core/imageEffects/DropShadowImageEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/core/imageEffects/DropShadowImageEffect.cpp -------------------------------------------------------------------------------- /src/annotations/core/imageEffects/DropShadowImageEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/core/imageEffects/DropShadowImageEffect.h -------------------------------------------------------------------------------- /src/annotations/core/imageEffects/GrayscaleImageEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/core/imageEffects/GrayscaleImageEffect.cpp -------------------------------------------------------------------------------- /src/annotations/core/imageEffects/GrayscaleImageEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/core/imageEffects/GrayscaleImageEffect.h -------------------------------------------------------------------------------- /src/annotations/core/imageEffects/ImageEffectFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/core/imageEffects/ImageEffectFactory.cpp -------------------------------------------------------------------------------- /src/annotations/core/imageEffects/ImageEffectFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/core/imageEffects/ImageEffectFactory.h -------------------------------------------------------------------------------- /src/annotations/core/imageEffects/InvertColorImageEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/core/imageEffects/InvertColorImageEffect.cpp -------------------------------------------------------------------------------- /src/annotations/core/imageEffects/InvertColorImageEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/core/imageEffects/InvertColorImageEffect.h -------------------------------------------------------------------------------- /src/annotations/core/imageEffects/NoImageEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/core/imageEffects/NoImageEffect.cpp -------------------------------------------------------------------------------- /src/annotations/core/imageEffects/NoImageEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/core/imageEffects/NoImageEffect.h -------------------------------------------------------------------------------- /src/annotations/items/AbstractAnnotationItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/items/AbstractAnnotationItem.cpp -------------------------------------------------------------------------------- /src/annotations/items/AbstractAnnotationItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/items/AbstractAnnotationItem.h -------------------------------------------------------------------------------- /src/annotations/items/AbstractAnnotationLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/items/AbstractAnnotationLine.cpp -------------------------------------------------------------------------------- /src/annotations/items/AbstractAnnotationLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/items/AbstractAnnotationLine.h -------------------------------------------------------------------------------- /src/annotations/items/AbstractAnnotationObfuscate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/items/AbstractAnnotationObfuscate.cpp -------------------------------------------------------------------------------- /src/annotations/items/AbstractAnnotationObfuscate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/items/AbstractAnnotationObfuscate.h -------------------------------------------------------------------------------- /src/annotations/items/AbstractAnnotationPath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/items/AbstractAnnotationPath.cpp -------------------------------------------------------------------------------- /src/annotations/items/AbstractAnnotationPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/items/AbstractAnnotationPath.h -------------------------------------------------------------------------------- /src/annotations/items/AbstractAnnotationPointerRect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/items/AbstractAnnotationPointerRect.cpp -------------------------------------------------------------------------------- /src/annotations/items/AbstractAnnotationPointerRect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/items/AbstractAnnotationPointerRect.h -------------------------------------------------------------------------------- /src/annotations/items/AbstractAnnotationRect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/items/AbstractAnnotationRect.cpp -------------------------------------------------------------------------------- /src/annotations/items/AbstractAnnotationRect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/items/AbstractAnnotationRect.h -------------------------------------------------------------------------------- /src/annotations/items/AnnotationArrow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/items/AnnotationArrow.cpp -------------------------------------------------------------------------------- /src/annotations/items/AnnotationArrow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/items/AnnotationArrow.h -------------------------------------------------------------------------------- /src/annotations/items/AnnotationBlur.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/items/AnnotationBlur.cpp -------------------------------------------------------------------------------- /src/annotations/items/AnnotationBlur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/items/AnnotationBlur.h -------------------------------------------------------------------------------- /src/annotations/items/AnnotationDoubleArrow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/items/AnnotationDoubleArrow.cpp -------------------------------------------------------------------------------- /src/annotations/items/AnnotationDoubleArrow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/items/AnnotationDoubleArrow.h -------------------------------------------------------------------------------- /src/annotations/items/AnnotationDuplicate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/items/AnnotationDuplicate.cpp -------------------------------------------------------------------------------- /src/annotations/items/AnnotationDuplicate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/items/AnnotationDuplicate.h -------------------------------------------------------------------------------- /src/annotations/items/AnnotationEllipse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/items/AnnotationEllipse.cpp -------------------------------------------------------------------------------- /src/annotations/items/AnnotationEllipse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/items/AnnotationEllipse.h -------------------------------------------------------------------------------- /src/annotations/items/AnnotationImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/items/AnnotationImage.cpp -------------------------------------------------------------------------------- /src/annotations/items/AnnotationImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/items/AnnotationImage.h -------------------------------------------------------------------------------- /src/annotations/items/AnnotationLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/items/AnnotationLine.cpp -------------------------------------------------------------------------------- /src/annotations/items/AnnotationLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/items/AnnotationLine.h -------------------------------------------------------------------------------- /src/annotations/items/AnnotationMarkerEllipse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/items/AnnotationMarkerEllipse.cpp -------------------------------------------------------------------------------- /src/annotations/items/AnnotationMarkerEllipse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/items/AnnotationMarkerEllipse.h -------------------------------------------------------------------------------- /src/annotations/items/AnnotationMarkerPen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/items/AnnotationMarkerPen.cpp -------------------------------------------------------------------------------- /src/annotations/items/AnnotationMarkerPen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/items/AnnotationMarkerPen.h -------------------------------------------------------------------------------- /src/annotations/items/AnnotationMarkerRect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/items/AnnotationMarkerRect.cpp -------------------------------------------------------------------------------- /src/annotations/items/AnnotationMarkerRect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/items/AnnotationMarkerRect.h -------------------------------------------------------------------------------- /src/annotations/items/AnnotationNumber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/items/AnnotationNumber.cpp -------------------------------------------------------------------------------- /src/annotations/items/AnnotationNumber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/items/AnnotationNumber.h -------------------------------------------------------------------------------- /src/annotations/items/AnnotationNumberArrow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/items/AnnotationNumberArrow.cpp -------------------------------------------------------------------------------- /src/annotations/items/AnnotationNumberArrow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/items/AnnotationNumberArrow.h -------------------------------------------------------------------------------- /src/annotations/items/AnnotationNumberPointer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/items/AnnotationNumberPointer.cpp -------------------------------------------------------------------------------- /src/annotations/items/AnnotationNumberPointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/items/AnnotationNumberPointer.h -------------------------------------------------------------------------------- /src/annotations/items/AnnotationPen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/items/AnnotationPen.cpp -------------------------------------------------------------------------------- /src/annotations/items/AnnotationPen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/items/AnnotationPen.h -------------------------------------------------------------------------------- /src/annotations/items/AnnotationPixelate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/items/AnnotationPixelate.cpp -------------------------------------------------------------------------------- /src/annotations/items/AnnotationPixelate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/items/AnnotationPixelate.h -------------------------------------------------------------------------------- /src/annotations/items/AnnotationRect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/items/AnnotationRect.cpp -------------------------------------------------------------------------------- /src/annotations/items/AnnotationRect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/items/AnnotationRect.h -------------------------------------------------------------------------------- /src/annotations/items/AnnotationSticker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/items/AnnotationSticker.cpp -------------------------------------------------------------------------------- /src/annotations/items/AnnotationSticker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/items/AnnotationSticker.h -------------------------------------------------------------------------------- /src/annotations/items/AnnotationText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/items/AnnotationText.cpp -------------------------------------------------------------------------------- /src/annotations/items/AnnotationText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/items/AnnotationText.h -------------------------------------------------------------------------------- /src/annotations/items/AnnotationTextArrow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/items/AnnotationTextArrow.cpp -------------------------------------------------------------------------------- /src/annotations/items/AnnotationTextArrow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/items/AnnotationTextArrow.h -------------------------------------------------------------------------------- /src/annotations/items/AnnotationTextPointer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/items/AnnotationTextPointer.cpp -------------------------------------------------------------------------------- /src/annotations/items/AnnotationTextPointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/items/AnnotationTextPointer.h -------------------------------------------------------------------------------- /src/annotations/items/BaseAnnotationNumber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/items/BaseAnnotationNumber.cpp -------------------------------------------------------------------------------- /src/annotations/items/BaseAnnotationNumber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/items/BaseAnnotationNumber.h -------------------------------------------------------------------------------- /src/annotations/items/helper/AnnotationShapeCreator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/items/helper/AnnotationShapeCreator.cpp -------------------------------------------------------------------------------- /src/annotations/items/helper/AnnotationShapeCreator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/items/helper/AnnotationShapeCreator.h -------------------------------------------------------------------------------- /src/annotations/items/helper/NumberRectHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/items/helper/NumberRectHelper.cpp -------------------------------------------------------------------------------- /src/annotations/items/helper/NumberRectHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/items/helper/NumberRectHelper.h -------------------------------------------------------------------------------- /src/annotations/items/interfaces/EditableItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/items/interfaces/EditableItem.h -------------------------------------------------------------------------------- /src/annotations/items/text/AnnotationTextHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/items/text/AnnotationTextHandler.cpp -------------------------------------------------------------------------------- /src/annotations/items/text/AnnotationTextHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/items/text/AnnotationTextHandler.h -------------------------------------------------------------------------------- /src/annotations/items/text/CapsLockStatusChecker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/items/text/CapsLockStatusChecker.cpp -------------------------------------------------------------------------------- /src/annotations/items/text/CapsLockStatusChecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/items/text/CapsLockStatusChecker.h -------------------------------------------------------------------------------- /src/annotations/items/text/KeyInputHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/items/text/KeyInputHelper.cpp -------------------------------------------------------------------------------- /src/annotations/items/text/KeyInputHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/items/text/KeyInputHelper.h -------------------------------------------------------------------------------- /src/annotations/items/text/TextCursor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/items/text/TextCursor.cpp -------------------------------------------------------------------------------- /src/annotations/items/text/TextCursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/items/text/TextCursor.h -------------------------------------------------------------------------------- /src/annotations/items/text/TextHandlerItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/items/text/TextHandlerItem.cpp -------------------------------------------------------------------------------- /src/annotations/items/text/TextHandlerItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/items/text/TextHandlerItem.h -------------------------------------------------------------------------------- /src/annotations/misc/AbstractCloneableItemEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/misc/AbstractCloneableItemEffect.cpp -------------------------------------------------------------------------------- /src/annotations/misc/AbstractCloneableItemEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/misc/AbstractCloneableItemEffect.h -------------------------------------------------------------------------------- /src/annotations/misc/AnnotationContextMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/misc/AnnotationContextMenu.cpp -------------------------------------------------------------------------------- /src/annotations/misc/AnnotationContextMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/misc/AnnotationContextMenu.h -------------------------------------------------------------------------------- /src/annotations/misc/AnnotationItemClipboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/misc/AnnotationItemClipboard.cpp -------------------------------------------------------------------------------- /src/annotations/misc/AnnotationItemClipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/misc/AnnotationItemClipboard.h -------------------------------------------------------------------------------- /src/annotations/misc/CanvasPainter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/misc/CanvasPainter.cpp -------------------------------------------------------------------------------- /src/annotations/misc/CanvasPainter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/misc/CanvasPainter.h -------------------------------------------------------------------------------- /src/annotations/misc/ImageBlurrer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/misc/ImageBlurrer.cpp -------------------------------------------------------------------------------- /src/annotations/misc/ImageBlurrer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/misc/ImageBlurrer.h -------------------------------------------------------------------------------- /src/annotations/misc/NumberManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/misc/NumberManager.cpp -------------------------------------------------------------------------------- /src/annotations/misc/NumberManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/misc/NumberManager.h -------------------------------------------------------------------------------- /src/annotations/misc/itemEffects/NoEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/misc/itemEffects/NoEffect.cpp -------------------------------------------------------------------------------- /src/annotations/misc/itemEffects/NoEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/misc/itemEffects/NoEffect.h -------------------------------------------------------------------------------- /src/annotations/misc/itemEffects/ShadowEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/misc/itemEffects/ShadowEffect.cpp -------------------------------------------------------------------------------- /src/annotations/misc/itemEffects/ShadowEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/misc/itemEffects/ShadowEffect.h -------------------------------------------------------------------------------- /src/annotations/modifiers/AnnotationItemArranger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/modifiers/AnnotationItemArranger.cpp -------------------------------------------------------------------------------- /src/annotations/modifiers/AnnotationItemArranger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/modifiers/AnnotationItemArranger.h -------------------------------------------------------------------------------- /src/annotations/modifiers/AnnotationItemEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/modifiers/AnnotationItemEditor.cpp -------------------------------------------------------------------------------- /src/annotations/modifiers/AnnotationItemEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/modifiers/AnnotationItemEditor.h -------------------------------------------------------------------------------- /src/annotations/modifiers/AnnotationItemModifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/modifiers/AnnotationItemModifier.cpp -------------------------------------------------------------------------------- /src/annotations/modifiers/AnnotationItemModifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/modifiers/AnnotationItemModifier.h -------------------------------------------------------------------------------- /src/annotations/modifiers/AnnotationItemMover.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/modifiers/AnnotationItemMover.cpp -------------------------------------------------------------------------------- /src/annotations/modifiers/AnnotationItemMover.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/modifiers/AnnotationItemMover.h -------------------------------------------------------------------------------- /src/annotations/modifiers/AnnotationItemResizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/modifiers/AnnotationItemResizer.cpp -------------------------------------------------------------------------------- /src/annotations/modifiers/AnnotationItemResizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/modifiers/AnnotationItemResizer.h -------------------------------------------------------------------------------- /src/annotations/modifiers/AnnotationItemSelector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/modifiers/AnnotationItemSelector.cpp -------------------------------------------------------------------------------- /src/annotations/modifiers/AnnotationItemSelector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/modifiers/AnnotationItemSelector.h -------------------------------------------------------------------------------- /src/annotations/modifiers/AnnotationMultiItemResizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/modifiers/AnnotationMultiItemResizer.cpp -------------------------------------------------------------------------------- /src/annotations/modifiers/AnnotationMultiItemResizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/modifiers/AnnotationMultiItemResizer.h -------------------------------------------------------------------------------- /src/annotations/modifiers/resizeHandles/AbstractItemResizeHandles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/modifiers/resizeHandles/AbstractItemResizeHandles.cpp -------------------------------------------------------------------------------- /src/annotations/modifiers/resizeHandles/AbstractItemResizeHandles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/modifiers/resizeHandles/AbstractItemResizeHandles.h -------------------------------------------------------------------------------- /src/annotations/modifiers/resizeHandles/AbstractRectResizeHandles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/modifiers/resizeHandles/AbstractRectResizeHandles.cpp -------------------------------------------------------------------------------- /src/annotations/modifiers/resizeHandles/AbstractRectResizeHandles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/modifiers/resizeHandles/AbstractRectResizeHandles.h -------------------------------------------------------------------------------- /src/annotations/modifiers/resizeHandles/LineResizeHandles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/modifiers/resizeHandles/LineResizeHandles.cpp -------------------------------------------------------------------------------- /src/annotations/modifiers/resizeHandles/LineResizeHandles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/modifiers/resizeHandles/LineResizeHandles.h -------------------------------------------------------------------------------- /src/annotations/modifiers/resizeHandles/PathResizeHandles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/modifiers/resizeHandles/PathResizeHandles.cpp -------------------------------------------------------------------------------- /src/annotations/modifiers/resizeHandles/PathResizeHandles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/modifiers/resizeHandles/PathResizeHandles.h -------------------------------------------------------------------------------- /src/annotations/modifiers/resizeHandles/PointerRectResizeHandles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/modifiers/resizeHandles/PointerRectResizeHandles.cpp -------------------------------------------------------------------------------- /src/annotations/modifiers/resizeHandles/PointerRectResizeHandles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/modifiers/resizeHandles/PointerRectResizeHandles.h -------------------------------------------------------------------------------- /src/annotations/modifiers/resizeHandles/RectResizeHandles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/modifiers/resizeHandles/RectResizeHandles.cpp -------------------------------------------------------------------------------- /src/annotations/modifiers/resizeHandles/RectResizeHandles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/modifiers/resizeHandles/RectResizeHandles.h -------------------------------------------------------------------------------- /src/annotations/modifiers/resizeHandles/ResizeHandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/modifiers/resizeHandles/ResizeHandle.cpp -------------------------------------------------------------------------------- /src/annotations/modifiers/resizeHandles/ResizeHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/modifiers/resizeHandles/ResizeHandle.h -------------------------------------------------------------------------------- /src/annotations/modifiers/resizeHandles/ResizeHandlesFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/modifiers/resizeHandles/ResizeHandlesFactory.cpp -------------------------------------------------------------------------------- /src/annotations/modifiers/resizeHandles/ResizeHandlesFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/modifiers/resizeHandles/ResizeHandlesFactory.h -------------------------------------------------------------------------------- /src/annotations/properties/AnnotationObfuscateProperties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/properties/AnnotationObfuscateProperties.cpp -------------------------------------------------------------------------------- /src/annotations/properties/AnnotationObfuscateProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/properties/AnnotationObfuscateProperties.h -------------------------------------------------------------------------------- /src/annotations/properties/AnnotationPathProperties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/properties/AnnotationPathProperties.cpp -------------------------------------------------------------------------------- /src/annotations/properties/AnnotationPathProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/properties/AnnotationPathProperties.h -------------------------------------------------------------------------------- /src/annotations/properties/AnnotationProperties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/properties/AnnotationProperties.cpp -------------------------------------------------------------------------------- /src/annotations/properties/AnnotationProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/properties/AnnotationProperties.h -------------------------------------------------------------------------------- /src/annotations/properties/AnnotationStickerProperties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/properties/AnnotationStickerProperties.cpp -------------------------------------------------------------------------------- /src/annotations/properties/AnnotationStickerProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/properties/AnnotationStickerProperties.h -------------------------------------------------------------------------------- /src/annotations/properties/AnnotationTextProperties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/properties/AnnotationTextProperties.cpp -------------------------------------------------------------------------------- /src/annotations/properties/AnnotationTextProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/properties/AnnotationTextProperties.h -------------------------------------------------------------------------------- /src/annotations/undo/AddCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/undo/AddCommand.cpp -------------------------------------------------------------------------------- /src/annotations/undo/AddCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/undo/AddCommand.h -------------------------------------------------------------------------------- /src/annotations/undo/ArrangeCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/undo/ArrangeCommand.cpp -------------------------------------------------------------------------------- /src/annotations/undo/ArrangeCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/undo/ArrangeCommand.h -------------------------------------------------------------------------------- /src/annotations/undo/ChangePropertiesCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/undo/ChangePropertiesCommand.cpp -------------------------------------------------------------------------------- /src/annotations/undo/ChangePropertiesCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/undo/ChangePropertiesCommand.h -------------------------------------------------------------------------------- /src/annotations/undo/CropCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/undo/CropCommand.cpp -------------------------------------------------------------------------------- /src/annotations/undo/CropCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/undo/CropCommand.h -------------------------------------------------------------------------------- /src/annotations/undo/CutCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/undo/CutCommand.cpp -------------------------------------------------------------------------------- /src/annotations/undo/CutCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/undo/CutCommand.h -------------------------------------------------------------------------------- /src/annotations/undo/DeleteCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/undo/DeleteCommand.cpp -------------------------------------------------------------------------------- /src/annotations/undo/DeleteCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/undo/DeleteCommand.h -------------------------------------------------------------------------------- /src/annotations/undo/FlipCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/undo/FlipCommand.cpp -------------------------------------------------------------------------------- /src/annotations/undo/FlipCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/undo/FlipCommand.h -------------------------------------------------------------------------------- /src/annotations/undo/ModifyCanvasCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/undo/ModifyCanvasCommand.cpp -------------------------------------------------------------------------------- /src/annotations/undo/ModifyCanvasCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/undo/ModifyCanvasCommand.h -------------------------------------------------------------------------------- /src/annotations/undo/MoveCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/undo/MoveCommand.cpp -------------------------------------------------------------------------------- /src/annotations/undo/MoveCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/undo/MoveCommand.h -------------------------------------------------------------------------------- /src/annotations/undo/PasteCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/undo/PasteCommand.cpp -------------------------------------------------------------------------------- /src/annotations/undo/PasteCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/undo/PasteCommand.h -------------------------------------------------------------------------------- /src/annotations/undo/ResizeCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/undo/ResizeCommand.cpp -------------------------------------------------------------------------------- /src/annotations/undo/ResizeCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/undo/ResizeCommand.h -------------------------------------------------------------------------------- /src/annotations/undo/RotateCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/undo/RotateCommand.cpp -------------------------------------------------------------------------------- /src/annotations/undo/RotateCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/undo/RotateCommand.h -------------------------------------------------------------------------------- /src/annotations/undo/ScaleCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/undo/ScaleCommand.cpp -------------------------------------------------------------------------------- /src/annotations/undo/ScaleCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/undo/ScaleCommand.h -------------------------------------------------------------------------------- /src/annotations/undo/UndoStack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/undo/UndoStack.cpp -------------------------------------------------------------------------------- /src/annotations/undo/UndoStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/annotations/undo/UndoStack.h -------------------------------------------------------------------------------- /src/backend/Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/backend/Config.cpp -------------------------------------------------------------------------------- /src/backend/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/backend/Config.h -------------------------------------------------------------------------------- /src/backend/ISettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/backend/ISettings.h -------------------------------------------------------------------------------- /src/backend/SettingsAdapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/backend/SettingsAdapter.cpp -------------------------------------------------------------------------------- /src/backend/SettingsAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/backend/SettingsAdapter.h -------------------------------------------------------------------------------- /src/common/constants/Constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/common/constants/Constants.h -------------------------------------------------------------------------------- /src/common/enum/DesktopEnvironmentType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/common/enum/DesktopEnvironmentType.h -------------------------------------------------------------------------------- /src/common/enum/FillModes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/common/enum/FillModes.h -------------------------------------------------------------------------------- /src/common/enum/FlipDirection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/common/enum/FlipDirection.h -------------------------------------------------------------------------------- /src/common/enum/ImageEffects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/common/enum/ImageEffects.h -------------------------------------------------------------------------------- /src/common/enum/NumberUpdateMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/common/enum/NumberUpdateMode.h -------------------------------------------------------------------------------- /src/common/enum/Tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/common/enum/Tools.h -------------------------------------------------------------------------------- /src/common/filter/IKeyEventListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/common/filter/IKeyEventListener.h -------------------------------------------------------------------------------- /src/common/filter/IgnoreShortcutsFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/common/filter/IgnoreShortcutsFilter.cpp -------------------------------------------------------------------------------- /src/common/filter/IgnoreShortcutsFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/common/filter/IgnoreShortcutsFilter.h -------------------------------------------------------------------------------- /src/common/filter/KeyEventFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/common/filter/KeyEventFilter.cpp -------------------------------------------------------------------------------- /src/common/filter/KeyEventFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/common/filter/KeyEventFilter.h -------------------------------------------------------------------------------- /src/common/helper/ConfigNameHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/common/helper/ConfigNameHelper.cpp -------------------------------------------------------------------------------- /src/common/helper/ConfigNameHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/common/helper/ConfigNameHelper.h -------------------------------------------------------------------------------- /src/common/helper/CursorHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/common/helper/CursorHelper.cpp -------------------------------------------------------------------------------- /src/common/helper/CursorHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/common/helper/CursorHelper.h -------------------------------------------------------------------------------- /src/common/helper/DesktopEnvironmentChecker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/common/helper/DesktopEnvironmentChecker.cpp -------------------------------------------------------------------------------- /src/common/helper/DesktopEnvironmentChecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/common/helper/DesktopEnvironmentChecker.h -------------------------------------------------------------------------------- /src/common/helper/IconLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/common/helper/IconLoader.cpp -------------------------------------------------------------------------------- /src/common/helper/IconLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/common/helper/IconLoader.h -------------------------------------------------------------------------------- /src/common/helper/ItemHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/common/helper/ItemHelper.cpp -------------------------------------------------------------------------------- /src/common/helper/ItemHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/common/helper/ItemHelper.h -------------------------------------------------------------------------------- /src/common/helper/KeyHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/common/helper/KeyHelper.cpp -------------------------------------------------------------------------------- /src/common/helper/KeyHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/common/helper/KeyHelper.h -------------------------------------------------------------------------------- /src/common/helper/MathHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/common/helper/MathHelper.cpp -------------------------------------------------------------------------------- /src/common/helper/MathHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/common/helper/MathHelper.h -------------------------------------------------------------------------------- /src/common/helper/PathHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/common/helper/PathHelper.cpp -------------------------------------------------------------------------------- /src/common/helper/PathHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/common/helper/PathHelper.h -------------------------------------------------------------------------------- /src/common/helper/RectSizeHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/common/helper/RectSizeHelper.cpp -------------------------------------------------------------------------------- /src/common/helper/RectSizeHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/common/helper/RectSizeHelper.h -------------------------------------------------------------------------------- /src/common/helper/ShapeHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/common/helper/ShapeHelper.cpp -------------------------------------------------------------------------------- /src/common/helper/ShapeHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/common/helper/ShapeHelper.h -------------------------------------------------------------------------------- /src/common/platform/PlatformChecker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/common/platform/PlatformChecker.cpp -------------------------------------------------------------------------------- /src/common/platform/PlatformChecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/common/platform/PlatformChecker.h -------------------------------------------------------------------------------- /src/common/provider/DevicePixelRatioScaler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/common/provider/DevicePixelRatioScaler.cpp -------------------------------------------------------------------------------- /src/common/provider/DevicePixelRatioScaler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/common/provider/DevicePixelRatioScaler.h -------------------------------------------------------------------------------- /src/common/provider/IDevicePixelRatioScaler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/common/provider/IDevicePixelRatioScaler.h -------------------------------------------------------------------------------- /src/common/provider/ScaledSizeProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/common/provider/ScaledSizeProvider.cpp -------------------------------------------------------------------------------- /src/common/provider/ScaledSizeProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/common/provider/ScaledSizeProvider.h -------------------------------------------------------------------------------- /src/gui/CoreView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/CoreView.cpp -------------------------------------------------------------------------------- /src/gui/CoreView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/CoreView.h -------------------------------------------------------------------------------- /src/gui/KImageAnnotator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/KImageAnnotator.cpp -------------------------------------------------------------------------------- /src/gui/annotator/AnnotationView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/annotator/AnnotationView.cpp -------------------------------------------------------------------------------- /src/gui/annotator/AnnotationView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/annotator/AnnotationView.h -------------------------------------------------------------------------------- /src/gui/annotator/AnnotationWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/annotator/AnnotationWidget.cpp -------------------------------------------------------------------------------- /src/gui/annotator/AnnotationWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/annotator/AnnotationWidget.h -------------------------------------------------------------------------------- /src/gui/annotator/docks/AbstractAnnotationDockWidgetContent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/annotator/docks/AbstractAnnotationDockWidgetContent.cpp -------------------------------------------------------------------------------- /src/gui/annotator/docks/AbstractAnnotationDockWidgetContent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/annotator/docks/AbstractAnnotationDockWidgetContent.h -------------------------------------------------------------------------------- /src/gui/annotator/docks/AnnotationDockWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/annotator/docks/AnnotationDockWidget.cpp -------------------------------------------------------------------------------- /src/gui/annotator/docks/AnnotationDockWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/annotator/docks/AnnotationDockWidget.h -------------------------------------------------------------------------------- /src/gui/annotator/docks/AnnotationDockWidgetDragHandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/annotator/docks/AnnotationDockWidgetDragHandle.cpp -------------------------------------------------------------------------------- /src/gui/annotator/docks/AnnotationDockWidgetDragHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/annotator/docks/AnnotationDockWidgetDragHandle.h -------------------------------------------------------------------------------- /src/gui/annotator/settings/AnnotationControlsWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/annotator/settings/AnnotationControlsWidget.cpp -------------------------------------------------------------------------------- /src/gui/annotator/settings/AnnotationControlsWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/annotator/settings/AnnotationControlsWidget.h -------------------------------------------------------------------------------- /src/gui/annotator/settings/AnnotationGeneralSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/annotator/settings/AnnotationGeneralSettings.cpp -------------------------------------------------------------------------------- /src/gui/annotator/settings/AnnotationGeneralSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/annotator/settings/AnnotationGeneralSettings.h -------------------------------------------------------------------------------- /src/gui/annotator/settings/AnnotationImageSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/annotator/settings/AnnotationImageSettings.cpp -------------------------------------------------------------------------------- /src/gui/annotator/settings/AnnotationImageSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/annotator/settings/AnnotationImageSettings.h -------------------------------------------------------------------------------- /src/gui/annotator/settings/AnnotationItemSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/annotator/settings/AnnotationItemSettings.cpp -------------------------------------------------------------------------------- /src/gui/annotator/settings/AnnotationItemSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/annotator/settings/AnnotationItemSettings.h -------------------------------------------------------------------------------- /src/gui/annotator/settings/AnnotationSettingsAdapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/annotator/settings/AnnotationSettingsAdapter.cpp -------------------------------------------------------------------------------- /src/gui/annotator/settings/AnnotationSettingsAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/annotator/settings/AnnotationSettingsAdapter.h -------------------------------------------------------------------------------- /src/gui/annotator/settings/AnnotationToolSelection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/annotator/settings/AnnotationToolSelection.cpp -------------------------------------------------------------------------------- /src/gui/annotator/settings/AnnotationToolSelection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/annotator/settings/AnnotationToolSelection.h -------------------------------------------------------------------------------- /src/gui/annotator/settings/ExistingItemEditInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/annotator/settings/ExistingItemEditInfo.h -------------------------------------------------------------------------------- /src/gui/annotator/settings/ItemSettingsWidgetConfigurator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/annotator/settings/ItemSettingsWidgetConfigurator.cpp -------------------------------------------------------------------------------- /src/gui/annotator/settings/ItemSettingsWidgetConfigurator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/annotator/settings/ItemSettingsWidgetConfigurator.h -------------------------------------------------------------------------------- /src/gui/annotator/tabs/AnnotationTabClickEventFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/annotator/tabs/AnnotationTabClickEventFilter.cpp -------------------------------------------------------------------------------- /src/gui/annotator/tabs/AnnotationTabClickEventFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/annotator/tabs/AnnotationTabClickEventFilter.h -------------------------------------------------------------------------------- /src/gui/annotator/tabs/AnnotationTabCloser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/annotator/tabs/AnnotationTabCloser.cpp -------------------------------------------------------------------------------- /src/gui/annotator/tabs/AnnotationTabCloser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/annotator/tabs/AnnotationTabCloser.h -------------------------------------------------------------------------------- /src/gui/annotator/tabs/AnnotationTabContent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/annotator/tabs/AnnotationTabContent.cpp -------------------------------------------------------------------------------- /src/gui/annotator/tabs/AnnotationTabContent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/annotator/tabs/AnnotationTabContent.h -------------------------------------------------------------------------------- /src/gui/annotator/tabs/AnnotationTabContextMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/annotator/tabs/AnnotationTabContextMenu.cpp -------------------------------------------------------------------------------- /src/gui/annotator/tabs/AnnotationTabContextMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/annotator/tabs/AnnotationTabContextMenu.h -------------------------------------------------------------------------------- /src/gui/annotator/tabs/AnnotationTabWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/annotator/tabs/AnnotationTabWidget.cpp -------------------------------------------------------------------------------- /src/gui/annotator/tabs/AnnotationTabWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/annotator/tabs/AnnotationTabWidget.h -------------------------------------------------------------------------------- /src/gui/canvasModifier/ModifyCanvasSelectionRestrictor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/canvasModifier/ModifyCanvasSelectionRestrictor.cpp -------------------------------------------------------------------------------- /src/gui/canvasModifier/ModifyCanvasSelectionRestrictor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/canvasModifier/ModifyCanvasSelectionRestrictor.h -------------------------------------------------------------------------------- /src/gui/canvasModifier/ModifyCanvasView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/canvasModifier/ModifyCanvasView.cpp -------------------------------------------------------------------------------- /src/gui/canvasModifier/ModifyCanvasView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/canvasModifier/ModifyCanvasView.h -------------------------------------------------------------------------------- /src/gui/canvasModifier/ModifyCanvasWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/canvasModifier/ModifyCanvasWidget.cpp -------------------------------------------------------------------------------- /src/gui/canvasModifier/ModifyCanvasWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/canvasModifier/ModifyCanvasWidget.h -------------------------------------------------------------------------------- /src/gui/cropper/CropSelectionRestrictor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/cropper/CropSelectionRestrictor.cpp -------------------------------------------------------------------------------- /src/gui/cropper/CropSelectionRestrictor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/cropper/CropSelectionRestrictor.h -------------------------------------------------------------------------------- /src/gui/cropper/CropView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/cropper/CropView.cpp -------------------------------------------------------------------------------- /src/gui/cropper/CropView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/cropper/CropView.h -------------------------------------------------------------------------------- /src/gui/cropper/CropWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/cropper/CropWidget.cpp -------------------------------------------------------------------------------- /src/gui/cropper/CropWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/cropper/CropWidget.h -------------------------------------------------------------------------------- /src/gui/cutter/CutSelectionRestrictor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/cutter/CutSelectionRestrictor.cpp -------------------------------------------------------------------------------- /src/gui/cutter/CutSelectionRestrictor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/cutter/CutSelectionRestrictor.h -------------------------------------------------------------------------------- /src/gui/cutter/CutView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/cutter/CutView.cpp -------------------------------------------------------------------------------- /src/gui/cutter/CutView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/cutter/CutView.h -------------------------------------------------------------------------------- /src/gui/cutter/CutWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/cutter/CutWidget.cpp -------------------------------------------------------------------------------- /src/gui/cutter/CutWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/cutter/CutWidget.h -------------------------------------------------------------------------------- /src/gui/rotator/RotateDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/rotator/RotateDialog.cpp -------------------------------------------------------------------------------- /src/gui/rotator/RotateDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/rotator/RotateDialog.h -------------------------------------------------------------------------------- /src/gui/rotator/RotateWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/rotator/RotateWidget.cpp -------------------------------------------------------------------------------- /src/gui/rotator/RotateWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/rotator/RotateWidget.h -------------------------------------------------------------------------------- /src/gui/scaler/ScaleDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/scaler/ScaleDialog.cpp -------------------------------------------------------------------------------- /src/gui/scaler/ScaleDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/scaler/ScaleDialog.h -------------------------------------------------------------------------------- /src/gui/scaler/ScaleSizeHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/scaler/ScaleSizeHandler.cpp -------------------------------------------------------------------------------- /src/gui/scaler/ScaleSizeHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/scaler/ScaleSizeHandler.h -------------------------------------------------------------------------------- /src/gui/scaler/ScaleWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/scaler/ScaleWidget.cpp -------------------------------------------------------------------------------- /src/gui/scaler/ScaleWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/scaler/ScaleWidget.h -------------------------------------------------------------------------------- /src/gui/scrollAndZoomView/ScrollAndZoomView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/scrollAndZoomView/ScrollAndZoomView.cpp -------------------------------------------------------------------------------- /src/gui/scrollAndZoomView/ScrollAndZoomView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/scrollAndZoomView/ScrollAndZoomView.h -------------------------------------------------------------------------------- /src/gui/scrollAndZoomView/ViewZoomer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/scrollAndZoomView/ViewZoomer.cpp -------------------------------------------------------------------------------- /src/gui/scrollAndZoomView/ViewZoomer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/scrollAndZoomView/ViewZoomer.h -------------------------------------------------------------------------------- /src/gui/selection/BaseSelectionHandles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/selection/BaseSelectionHandles.cpp -------------------------------------------------------------------------------- /src/gui/selection/BaseSelectionHandles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/selection/BaseSelectionHandles.h -------------------------------------------------------------------------------- /src/gui/selection/BaseSelectionView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/selection/BaseSelectionView.cpp -------------------------------------------------------------------------------- /src/gui/selection/BaseSelectionView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/selection/BaseSelectionView.h -------------------------------------------------------------------------------- /src/gui/selection/ISelectionHandles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/selection/ISelectionHandles.h -------------------------------------------------------------------------------- /src/gui/selection/ISelectionRestrictor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/selection/ISelectionRestrictor.h -------------------------------------------------------------------------------- /src/gui/selection/SelectionHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/selection/SelectionHandler.cpp -------------------------------------------------------------------------------- /src/gui/selection/SelectionHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/selection/SelectionHandler.h -------------------------------------------------------------------------------- /src/gui/selection/SelectionHandlesAll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/selection/SelectionHandlesAll.cpp -------------------------------------------------------------------------------- /src/gui/selection/SelectionHandlesAll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/selection/SelectionHandlesAll.h -------------------------------------------------------------------------------- /src/gui/selection/SelectionHandlesHorizontal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/selection/SelectionHandlesHorizontal.cpp -------------------------------------------------------------------------------- /src/gui/selection/SelectionHandlesHorizontal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/selection/SelectionHandlesHorizontal.h -------------------------------------------------------------------------------- /src/gui/selection/SelectionHandlesVertical.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/selection/SelectionHandlesVertical.cpp -------------------------------------------------------------------------------- /src/gui/selection/SelectionHandlesVertical.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/selection/SelectionHandlesVertical.h -------------------------------------------------------------------------------- /src/gui/selection/SelectionMoveHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/selection/SelectionMoveHelper.cpp -------------------------------------------------------------------------------- /src/gui/selection/SelectionMoveHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/gui/selection/SelectionMoveHelper.h -------------------------------------------------------------------------------- /src/widgets/ColorDialogButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/widgets/ColorDialogButton.cpp -------------------------------------------------------------------------------- /src/widgets/ColorDialogButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/widgets/ColorDialogButton.h -------------------------------------------------------------------------------- /src/widgets/Controls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/widgets/Controls.cpp -------------------------------------------------------------------------------- /src/widgets/Controls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/widgets/Controls.h -------------------------------------------------------------------------------- /src/widgets/CustomFontComboBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/widgets/CustomFontComboBox.cpp -------------------------------------------------------------------------------- /src/widgets/CustomFontComboBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/widgets/CustomFontComboBox.h -------------------------------------------------------------------------------- /src/widgets/CustomSpinBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/widgets/CustomSpinBox.cpp -------------------------------------------------------------------------------- /src/widgets/CustomSpinBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/widgets/CustomSpinBox.h -------------------------------------------------------------------------------- /src/widgets/CustomToolButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/widgets/CustomToolButton.cpp -------------------------------------------------------------------------------- /src/widgets/CustomToolButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/widgets/CustomToolButton.h -------------------------------------------------------------------------------- /src/widgets/CustomToolButtonAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/widgets/CustomToolButtonAction.cpp -------------------------------------------------------------------------------- /src/widgets/CustomToolButtonAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/widgets/CustomToolButtonAction.h -------------------------------------------------------------------------------- /src/widgets/ToggleButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/widgets/ToggleButton.cpp -------------------------------------------------------------------------------- /src/widgets/ToggleButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/widgets/ToggleButton.h -------------------------------------------------------------------------------- /src/widgets/ToolPicker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/widgets/ToolPicker.cpp -------------------------------------------------------------------------------- /src/widgets/ToolPicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/widgets/ToolPicker.h -------------------------------------------------------------------------------- /src/widgets/menuButtons/GridMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/widgets/menuButtons/GridMenu.cpp -------------------------------------------------------------------------------- /src/widgets/menuButtons/GridMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/widgets/menuButtons/GridMenu.h -------------------------------------------------------------------------------- /src/widgets/menuButtons/GridMenuButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/widgets/menuButtons/GridMenuButton.cpp -------------------------------------------------------------------------------- /src/widgets/menuButtons/GridMenuButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/widgets/menuButtons/GridMenuButton.h -------------------------------------------------------------------------------- /src/widgets/menuButtons/GridMenuToolButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/widgets/menuButtons/GridMenuToolButton.cpp -------------------------------------------------------------------------------- /src/widgets/menuButtons/GridMenuToolButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/widgets/menuButtons/GridMenuToolButton.h -------------------------------------------------------------------------------- /src/widgets/menuButtons/ListItemGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/widgets/menuButtons/ListItemGroup.cpp -------------------------------------------------------------------------------- /src/widgets/menuButtons/ListItemGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/widgets/menuButtons/ListItemGroup.h -------------------------------------------------------------------------------- /src/widgets/menuButtons/ListMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/widgets/menuButtons/ListMenu.cpp -------------------------------------------------------------------------------- /src/widgets/menuButtons/ListMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/widgets/menuButtons/ListMenu.h -------------------------------------------------------------------------------- /src/widgets/menuButtons/ListMenuItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/widgets/menuButtons/ListMenuItem.cpp -------------------------------------------------------------------------------- /src/widgets/menuButtons/ListMenuItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/widgets/menuButtons/ListMenuItem.h -------------------------------------------------------------------------------- /src/widgets/menuButtons/ListMenuToolButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/widgets/menuButtons/ListMenuToolButton.cpp -------------------------------------------------------------------------------- /src/widgets/menuButtons/ListMenuToolButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/widgets/menuButtons/ListMenuToolButton.h -------------------------------------------------------------------------------- /src/widgets/misc/AbstractExpandingWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/widgets/misc/AbstractExpandingWidget.cpp -------------------------------------------------------------------------------- /src/widgets/misc/AbstractExpandingWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/widgets/misc/AbstractExpandingWidget.h -------------------------------------------------------------------------------- /src/widgets/misc/AttachedSeparator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/widgets/misc/AttachedSeparator.cpp -------------------------------------------------------------------------------- /src/widgets/misc/AttachedSeparator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/widgets/misc/AttachedSeparator.h -------------------------------------------------------------------------------- /src/widgets/misc/FlowLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/widgets/misc/FlowLayout.cpp -------------------------------------------------------------------------------- /src/widgets/misc/FlowLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/widgets/misc/FlowLayout.h -------------------------------------------------------------------------------- /src/widgets/settingsPicker/BoolPicker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/widgets/settingsPicker/BoolPicker.cpp -------------------------------------------------------------------------------- /src/widgets/settingsPicker/BoolPicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/widgets/settingsPicker/BoolPicker.h -------------------------------------------------------------------------------- /src/widgets/settingsPicker/ColorPicker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/widgets/settingsPicker/ColorPicker.cpp -------------------------------------------------------------------------------- /src/widgets/settingsPicker/ColorPicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/widgets/settingsPicker/ColorPicker.h -------------------------------------------------------------------------------- /src/widgets/settingsPicker/FillModePicker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/widgets/settingsPicker/FillModePicker.cpp -------------------------------------------------------------------------------- /src/widgets/settingsPicker/FillModePicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/widgets/settingsPicker/FillModePicker.h -------------------------------------------------------------------------------- /src/widgets/settingsPicker/FontPicker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/widgets/settingsPicker/FontPicker.cpp -------------------------------------------------------------------------------- /src/widgets/settingsPicker/FontPicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/widgets/settingsPicker/FontPicker.h -------------------------------------------------------------------------------- /src/widgets/settingsPicker/ImageEffectPicker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/widgets/settingsPicker/ImageEffectPicker.cpp -------------------------------------------------------------------------------- /src/widgets/settingsPicker/ImageEffectPicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/widgets/settingsPicker/ImageEffectPicker.h -------------------------------------------------------------------------------- /src/widgets/settingsPicker/NumberPicker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/widgets/settingsPicker/NumberPicker.cpp -------------------------------------------------------------------------------- /src/widgets/settingsPicker/NumberPicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/widgets/settingsPicker/NumberPicker.h -------------------------------------------------------------------------------- /src/widgets/settingsPicker/SettingsPickerWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/widgets/settingsPicker/SettingsPickerWidget.cpp -------------------------------------------------------------------------------- /src/widgets/settingsPicker/SettingsPickerWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/widgets/settingsPicker/SettingsPickerWidget.h -------------------------------------------------------------------------------- /src/widgets/settingsPicker/StickerPicker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/widgets/settingsPicker/StickerPicker.cpp -------------------------------------------------------------------------------- /src/widgets/settingsPicker/StickerPicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/widgets/settingsPicker/StickerPicker.h -------------------------------------------------------------------------------- /src/widgets/settingsPicker/ZoomPicker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/widgets/settingsPicker/ZoomPicker.cpp -------------------------------------------------------------------------------- /src/widgets/settingsPicker/ZoomPicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/src/widgets/settingsPicker/ZoomPicker.h -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/annotations/core/AnnotationAreaTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/annotations/core/AnnotationAreaTest.cpp -------------------------------------------------------------------------------- /tests/annotations/core/AnnotationAreaTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/annotations/core/AnnotationAreaTest.h -------------------------------------------------------------------------------- /tests/annotations/core/AnnotationItemFactoryTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/annotations/core/AnnotationItemFactoryTest.cpp -------------------------------------------------------------------------------- /tests/annotations/core/AnnotationItemFactoryTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/annotations/core/AnnotationItemFactoryTest.h -------------------------------------------------------------------------------- /tests/annotations/core/AnnotationPropertiesFactoryTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/annotations/core/AnnotationPropertiesFactoryTest.cpp -------------------------------------------------------------------------------- /tests/annotations/core/AnnotationPropertiesFactoryTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/annotations/core/AnnotationPropertiesFactoryTest.h -------------------------------------------------------------------------------- /tests/annotations/items/helper/KeyInputHelperTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/annotations/items/helper/KeyInputHelperTest.cpp -------------------------------------------------------------------------------- /tests/annotations/items/helper/KeyInputHelperTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/annotations/items/helper/KeyInputHelperTest.h -------------------------------------------------------------------------------- /tests/annotations/items/helper/TextCursorTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/annotations/items/helper/TextCursorTest.cpp -------------------------------------------------------------------------------- /tests/annotations/items/helper/TextCursorTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/annotations/items/helper/TextCursorTest.h -------------------------------------------------------------------------------- /tests/annotations/misc/AnnotationItemClipboardTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/annotations/misc/AnnotationItemClipboardTest.cpp -------------------------------------------------------------------------------- /tests/annotations/misc/AnnotationItemClipboardTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/annotations/misc/AnnotationItemClipboardTest.h -------------------------------------------------------------------------------- /tests/annotations/misc/NumberManagerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/annotations/misc/NumberManagerTest.cpp -------------------------------------------------------------------------------- /tests/annotations/misc/NumberManagerTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/annotations/misc/NumberManagerTest.h -------------------------------------------------------------------------------- /tests/annotations/modifiers/AnnotationItemArrangerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/annotations/modifiers/AnnotationItemArrangerTest.cpp -------------------------------------------------------------------------------- /tests/annotations/modifiers/AnnotationItemArrangerTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/annotations/modifiers/AnnotationItemArrangerTest.h -------------------------------------------------------------------------------- /tests/annotations/modifiers/AnnotationItemModifierTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/annotations/modifiers/AnnotationItemModifierTest.cpp -------------------------------------------------------------------------------- /tests/annotations/modifiers/AnnotationItemModifierTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/annotations/modifiers/AnnotationItemModifierTest.h -------------------------------------------------------------------------------- /tests/annotations/modifiers/AnnotationItemMoverTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/annotations/modifiers/AnnotationItemMoverTest.cpp -------------------------------------------------------------------------------- /tests/annotations/modifiers/AnnotationItemMoverTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/annotations/modifiers/AnnotationItemMoverTest.h -------------------------------------------------------------------------------- /tests/annotations/modifiers/AnnotationItemResizerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/annotations/modifiers/AnnotationItemResizerTest.cpp -------------------------------------------------------------------------------- /tests/annotations/modifiers/AnnotationItemResizerTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/annotations/modifiers/AnnotationItemResizerTest.h -------------------------------------------------------------------------------- /tests/annotations/modifiers/AnnotationItemSelectorTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/annotations/modifiers/AnnotationItemSelectorTest.cpp -------------------------------------------------------------------------------- /tests/annotations/modifiers/AnnotationItemSelectorTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/annotations/modifiers/AnnotationItemSelectorTest.h -------------------------------------------------------------------------------- /tests/annotations/modifiers/AnnotationMultiItemResizerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/annotations/modifiers/AnnotationMultiItemResizerTest.cpp -------------------------------------------------------------------------------- /tests/annotations/modifiers/AnnotationMultiItemResizerTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/annotations/modifiers/AnnotationMultiItemResizerTest.h -------------------------------------------------------------------------------- /tests/annotations/modifiers/resizeHandles/LineResizeHandlesTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/annotations/modifiers/resizeHandles/LineResizeHandlesTest.cpp -------------------------------------------------------------------------------- /tests/annotations/modifiers/resizeHandles/LineResizeHandlesTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/annotations/modifiers/resizeHandles/LineResizeHandlesTest.h -------------------------------------------------------------------------------- /tests/annotations/modifiers/resizeHandles/PointerRectResizeHandlesTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/annotations/modifiers/resizeHandles/PointerRectResizeHandlesTest.cpp -------------------------------------------------------------------------------- /tests/annotations/modifiers/resizeHandles/PointerRectResizeHandlesTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/annotations/modifiers/resizeHandles/PointerRectResizeHandlesTest.h -------------------------------------------------------------------------------- /tests/annotations/modifiers/resizeHandles/RectResizeHandlesTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/annotations/modifiers/resizeHandles/RectResizeHandlesTest.cpp -------------------------------------------------------------------------------- /tests/annotations/modifiers/resizeHandles/RectResizeHandlesTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/annotations/modifiers/resizeHandles/RectResizeHandlesTest.h -------------------------------------------------------------------------------- /tests/annotations/undo/AddCommandTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/annotations/undo/AddCommandTest.cpp -------------------------------------------------------------------------------- /tests/annotations/undo/AddCommandTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/annotations/undo/AddCommandTest.h -------------------------------------------------------------------------------- /tests/annotations/undo/ArrangeCommandTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/annotations/undo/ArrangeCommandTest.cpp -------------------------------------------------------------------------------- /tests/annotations/undo/ArrangeCommandTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/annotations/undo/ArrangeCommandTest.h -------------------------------------------------------------------------------- /tests/annotations/undo/CropCommandTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/annotations/undo/CropCommandTest.cpp -------------------------------------------------------------------------------- /tests/annotations/undo/CropCommandTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/annotations/undo/CropCommandTest.h -------------------------------------------------------------------------------- /tests/annotations/undo/DeleteCommandTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/annotations/undo/DeleteCommandTest.cpp -------------------------------------------------------------------------------- /tests/annotations/undo/DeleteCommandTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/annotations/undo/DeleteCommandTest.h -------------------------------------------------------------------------------- /tests/annotations/undo/ModifyCanvasCommandTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/annotations/undo/ModifyCanvasCommandTest.cpp -------------------------------------------------------------------------------- /tests/annotations/undo/ModifyCanvasCommandTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/annotations/undo/ModifyCanvasCommandTest.h -------------------------------------------------------------------------------- /tests/annotations/undo/MoveCommandTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/annotations/undo/MoveCommandTest.cpp -------------------------------------------------------------------------------- /tests/annotations/undo/MoveCommandTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/annotations/undo/MoveCommandTest.h -------------------------------------------------------------------------------- /tests/annotations/undo/PasteCommandTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/annotations/undo/PasteCommandTest.cpp -------------------------------------------------------------------------------- /tests/annotations/undo/PasteCommandTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/annotations/undo/PasteCommandTest.h -------------------------------------------------------------------------------- /tests/annotations/undo/ResizeCommandTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/annotations/undo/ResizeCommandTest.cpp -------------------------------------------------------------------------------- /tests/annotations/undo/ResizeCommandTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/annotations/undo/ResizeCommandTest.h -------------------------------------------------------------------------------- /tests/annotations/undo/RotateCommandTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/annotations/undo/RotateCommandTest.cpp -------------------------------------------------------------------------------- /tests/annotations/undo/RotateCommandTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/annotations/undo/RotateCommandTest.h -------------------------------------------------------------------------------- /tests/annotations/undo/ScaleCommandTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/annotations/undo/ScaleCommandTest.cpp -------------------------------------------------------------------------------- /tests/annotations/undo/ScaleCommandTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/annotations/undo/ScaleCommandTest.h -------------------------------------------------------------------------------- /tests/backend/ConfigTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/backend/ConfigTest.cpp -------------------------------------------------------------------------------- /tests/backend/ConfigTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/backend/ConfigTest.h -------------------------------------------------------------------------------- /tests/common/helper/ItemHelperTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/common/helper/ItemHelperTest.cpp -------------------------------------------------------------------------------- /tests/common/helper/ItemHelperTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/common/helper/ItemHelperTest.h -------------------------------------------------------------------------------- /tests/common/helper/KeyHelperTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/common/helper/KeyHelperTest.cpp -------------------------------------------------------------------------------- /tests/common/helper/KeyHelperTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/common/helper/KeyHelperTest.h -------------------------------------------------------------------------------- /tests/common/helper/MathHelperTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/common/helper/MathHelperTest.cpp -------------------------------------------------------------------------------- /tests/common/helper/MathHelperTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/common/helper/MathHelperTest.h -------------------------------------------------------------------------------- /tests/common/helper/PathHelperTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/common/helper/PathHelperTest.cpp -------------------------------------------------------------------------------- /tests/common/helper/PathHelperTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/common/helper/PathHelperTest.h -------------------------------------------------------------------------------- /tests/common/helper/ShapeHelperTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/common/helper/ShapeHelperTest.cpp -------------------------------------------------------------------------------- /tests/common/helper/ShapeHelperTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/common/helper/ShapeHelperTest.h -------------------------------------------------------------------------------- /tests/gui/annotator/tabs/AnnotationTabCloserTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/gui/annotator/tabs/AnnotationTabCloserTest.cpp -------------------------------------------------------------------------------- /tests/gui/annotator/tabs/AnnotationTabCloserTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/gui/annotator/tabs/AnnotationTabCloserTest.h -------------------------------------------------------------------------------- /tests/gui/annotator/tabs/AnnotationTabContextMenuTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/gui/annotator/tabs/AnnotationTabContextMenuTest.cpp -------------------------------------------------------------------------------- /tests/gui/annotator/tabs/AnnotationTabContextMenuTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/gui/annotator/tabs/AnnotationTabContextMenuTest.h -------------------------------------------------------------------------------- /tests/gui/canvasModifier/ModifyCanvasSelectionRestrictorTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/gui/canvasModifier/ModifyCanvasSelectionRestrictorTest.cpp -------------------------------------------------------------------------------- /tests/gui/canvasModifier/ModifyCanvasSelectionRestrictorTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/gui/canvasModifier/ModifyCanvasSelectionRestrictorTest.h -------------------------------------------------------------------------------- /tests/gui/cropper/CropSelectionRestrictorTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/gui/cropper/CropSelectionRestrictorTest.cpp -------------------------------------------------------------------------------- /tests/gui/cropper/CropSelectionRestrictorTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/gui/cropper/CropSelectionRestrictorTest.h -------------------------------------------------------------------------------- /tests/gui/scaler/ScaleSizeHandlerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/gui/scaler/ScaleSizeHandlerTest.cpp -------------------------------------------------------------------------------- /tests/gui/scaler/ScaleSizeHandlerTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/gui/scaler/ScaleSizeHandlerTest.h -------------------------------------------------------------------------------- /tests/gui/selection/SelectionHandlerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/gui/selection/SelectionHandlerTest.cpp -------------------------------------------------------------------------------- /tests/gui/selection/SelectionHandlerTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/gui/selection/SelectionHandlerTest.h -------------------------------------------------------------------------------- /tests/gui/selection/SelectionHandlesAllTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/gui/selection/SelectionHandlesAllTest.cpp -------------------------------------------------------------------------------- /tests/gui/selection/SelectionHandlesAllTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/gui/selection/SelectionHandlesAllTest.h -------------------------------------------------------------------------------- /tests/gui/selection/SelectionMoveHelperTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/gui/selection/SelectionMoveHelperTest.cpp -------------------------------------------------------------------------------- /tests/gui/selection/SelectionMoveHelperTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/gui/selection/SelectionMoveHelperTest.h -------------------------------------------------------------------------------- /tests/mocks/MockDefaultParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/mocks/MockDefaultParameters.h -------------------------------------------------------------------------------- /tests/mocks/MockDevicePixelRatioScaler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/mocks/MockDevicePixelRatioScaler.cpp -------------------------------------------------------------------------------- /tests/mocks/MockDevicePixelRatioScaler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/mocks/MockDevicePixelRatioScaler.h -------------------------------------------------------------------------------- /tests/mocks/MockSelectionRestrictor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/mocks/MockSelectionRestrictor.cpp -------------------------------------------------------------------------------- /tests/mocks/MockSelectionRestrictor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/mocks/MockSelectionRestrictor.h -------------------------------------------------------------------------------- /tests/mocks/MockSettingsProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/mocks/MockSettingsProvider.cpp -------------------------------------------------------------------------------- /tests/mocks/MockSettingsProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/mocks/MockSettingsProvider.h -------------------------------------------------------------------------------- /tests/mocks/MockZoomValueProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/mocks/MockZoomValueProvider.cpp -------------------------------------------------------------------------------- /tests/mocks/MockZoomValueProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/mocks/MockZoomValueProvider.h -------------------------------------------------------------------------------- /tests/mocks/backend/SettingsMock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/mocks/backend/SettingsMock.h -------------------------------------------------------------------------------- /tests/mocks/gui/selection/SelectionHandlesMock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/mocks/gui/selection/SelectionHandlesMock.h -------------------------------------------------------------------------------- /tests/utils/TestRunner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/utils/TestRunner.h -------------------------------------------------------------------------------- /tests/widgets/CustomSpinBoxTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/widgets/CustomSpinBoxTest.cpp -------------------------------------------------------------------------------- /tests/widgets/CustomSpinBoxTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/widgets/CustomSpinBoxTest.h -------------------------------------------------------------------------------- /tests/widgets/misc/AttachedSeparatorTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/widgets/misc/AttachedSeparatorTest.cpp -------------------------------------------------------------------------------- /tests/widgets/misc/AttachedSeparatorTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/widgets/misc/AttachedSeparatorTest.h -------------------------------------------------------------------------------- /tests/widgets/settingsPicker/ColorPickerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/widgets/settingsPicker/ColorPickerTest.cpp -------------------------------------------------------------------------------- /tests/widgets/settingsPicker/ColorPickerTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/widgets/settingsPicker/ColorPickerTest.h -------------------------------------------------------------------------------- /tests/widgets/settingsPicker/FillModePickerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/widgets/settingsPicker/FillModePickerTest.cpp -------------------------------------------------------------------------------- /tests/widgets/settingsPicker/FillModePickerTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/widgets/settingsPicker/FillModePickerTest.h -------------------------------------------------------------------------------- /tests/widgets/settingsPicker/ImageEffectPickerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/widgets/settingsPicker/ImageEffectPickerTest.cpp -------------------------------------------------------------------------------- /tests/widgets/settingsPicker/ImageEffectPickerTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/widgets/settingsPicker/ImageEffectPickerTest.h -------------------------------------------------------------------------------- /tests/widgets/settingsPicker/NumberPickerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/widgets/settingsPicker/NumberPickerTest.cpp -------------------------------------------------------------------------------- /tests/widgets/settingsPicker/NumberPickerTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/widgets/settingsPicker/NumberPickerTest.h -------------------------------------------------------------------------------- /tests/widgets/settingsPicker/StickerPickerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/widgets/settingsPicker/StickerPickerTest.cpp -------------------------------------------------------------------------------- /tests/widgets/settingsPicker/StickerPickerTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/widgets/settingsPicker/StickerPickerTest.h -------------------------------------------------------------------------------- /tests/widgets/settingsPicker/ToolPickerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/widgets/settingsPicker/ToolPickerTest.cpp -------------------------------------------------------------------------------- /tests/widgets/settingsPicker/ToolPickerTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/widgets/settingsPicker/ToolPickerTest.h -------------------------------------------------------------------------------- /tests/widgets/settingsPicker/ZoomPickerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/widgets/settingsPicker/ZoomPickerTest.cpp -------------------------------------------------------------------------------- /tests/widgets/settingsPicker/ZoomPickerTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/tests/widgets/settingsPicker/ZoomPickerTest.h -------------------------------------------------------------------------------- /translations/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/translations/CMakeLists.txt -------------------------------------------------------------------------------- /translations/kImageAnnotator_ar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/translations/kImageAnnotator_ar.ts -------------------------------------------------------------------------------- /translations/kImageAnnotator_bg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/translations/kImageAnnotator_bg.ts -------------------------------------------------------------------------------- /translations/kImageAnnotator_ca.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/translations/kImageAnnotator_ca.ts -------------------------------------------------------------------------------- /translations/kImageAnnotator_cs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/translations/kImageAnnotator_cs.ts -------------------------------------------------------------------------------- /translations/kImageAnnotator_da.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/translations/kImageAnnotator_da.ts -------------------------------------------------------------------------------- /translations/kImageAnnotator_de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/translations/kImageAnnotator_de.ts -------------------------------------------------------------------------------- /translations/kImageAnnotator_el.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/translations/kImageAnnotator_el.ts -------------------------------------------------------------------------------- /translations/kImageAnnotator_es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/translations/kImageAnnotator_es.ts -------------------------------------------------------------------------------- /translations/kImageAnnotator_et.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/translations/kImageAnnotator_et.ts -------------------------------------------------------------------------------- /translations/kImageAnnotator_eu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/translations/kImageAnnotator_eu.ts -------------------------------------------------------------------------------- /translations/kImageAnnotator_fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/translations/kImageAnnotator_fr.ts -------------------------------------------------------------------------------- /translations/kImageAnnotator_fr_CA.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/translations/kImageAnnotator_fr_CA.ts -------------------------------------------------------------------------------- /translations/kImageAnnotator_gl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/translations/kImageAnnotator_gl.ts -------------------------------------------------------------------------------- /translations/kImageAnnotator_hr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/translations/kImageAnnotator_hr.ts -------------------------------------------------------------------------------- /translations/kImageAnnotator_hu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/translations/kImageAnnotator_hu.ts -------------------------------------------------------------------------------- /translations/kImageAnnotator_id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/translations/kImageAnnotator_id.ts -------------------------------------------------------------------------------- /translations/kImageAnnotator_it.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/translations/kImageAnnotator_it.ts -------------------------------------------------------------------------------- /translations/kImageAnnotator_ja.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/translations/kImageAnnotator_ja.ts -------------------------------------------------------------------------------- /translations/kImageAnnotator_ko.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/translations/kImageAnnotator_ko.ts -------------------------------------------------------------------------------- /translations/kImageAnnotator_nl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/translations/kImageAnnotator_nl.ts -------------------------------------------------------------------------------- /translations/kImageAnnotator_no.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/translations/kImageAnnotator_no.ts -------------------------------------------------------------------------------- /translations/kImageAnnotator_pl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/translations/kImageAnnotator_pl.ts -------------------------------------------------------------------------------- /translations/kImageAnnotator_pt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/translations/kImageAnnotator_pt.ts -------------------------------------------------------------------------------- /translations/kImageAnnotator_pt_BR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/translations/kImageAnnotator_pt_BR.ts -------------------------------------------------------------------------------- /translations/kImageAnnotator_ro.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/translations/kImageAnnotator_ro.ts -------------------------------------------------------------------------------- /translations/kImageAnnotator_ru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/translations/kImageAnnotator_ru.ts -------------------------------------------------------------------------------- /translations/kImageAnnotator_si.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/translations/kImageAnnotator_si.ts -------------------------------------------------------------------------------- /translations/kImageAnnotator_sq.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/translations/kImageAnnotator_sq.ts -------------------------------------------------------------------------------- /translations/kImageAnnotator_sv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/translations/kImageAnnotator_sv.ts -------------------------------------------------------------------------------- /translations/kImageAnnotator_ta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/translations/kImageAnnotator_ta.ts -------------------------------------------------------------------------------- /translations/kImageAnnotator_tr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/translations/kImageAnnotator_tr.ts -------------------------------------------------------------------------------- /translations/kImageAnnotator_uk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/translations/kImageAnnotator_uk.ts -------------------------------------------------------------------------------- /translations/kImageAnnotator_zh_CN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksnip/kImageAnnotator/HEAD/translations/kImageAnnotator_zh_CN.ts --------------------------------------------------------------------------------