Pencil2D Animation
Download Community News Docs Contribute
  • Overview
  • Articles
  • Code
  •  
  • Class List
  • Class Index
  • Class Hierarchy
  • Class Members
  • File List
Loading...
Searching...
No Matches
  • core_lib
  • src
  • structure
pegbaraligner.h
1/*
2
3Pencil2D - Traditional Animation Software
4Copyright (C) 2005-2007 Patrick Corrieri & Pascal Naidon
5Copyright (C) 2012-2020 Matthew Chiawen Chang
6
7This program is free software; you can redistribute it and/or
8modify it under the terms of the GNU General Public License
9as published by the Free Software Foundation; version 2 of the License.
10
11This program is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16*/
17#ifndef PEGBARALIGNER_H
18#define PEGBARALIGNER_H
19
20#include <pencilerror.h>
21
22#include <QPoint>
23#include <QRectF>
24
25class BitmapImage;
26class Editor;
27
28class PegStatus : public Status
29{
30public:
31 PegStatus(ErrorCode code, QPoint point = {});
32 QPoint point;
33};
34
35class PegBarAligner
36{
37 Q_DECLARE_TR_FUNCTIONS(PegBarAligner)
38public:
39 PegBarAligner(Editor* editor, QRect searchRect);
40
41 Status align(const QStringList& layers);
42
43private:
44 PegStatus findPoint(const BitmapImage& image) const;
45
46 Editor* mEditor = nullptr;
47
48 const int mGrayThreshold = 121;
49 QRect mPegSearchRect;
50};
51
52#endif // PEGBARALIGNER_H
BitmapImage
Definition: bitmapimage.h:28
Editor
Definition: editor.h:71
PegBarAligner
Definition: pegbaraligner.h:36
PegStatus
Definition: pegbaraligner.h:29
Status
Definition: pencilerror.h:40
QPoint
QRect
QStringList
Generated on Thu May 8 2025 04:47:53 for Pencil2D by doxygen 1.9.6 based on revision 4513250b1d5b1a3676ec0e67b06b7a885ceaae39