1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
|
/*
*
* Compiz scale plugin addon plugin
*
* scaleaddon.h
*
* Copyright : (C) 2007 by Danny Baumann
* E-mail : maniac@opencompositing.org
*
* Organic scale mode taken from Beryl's scale.c, written by
* Copyright : (C) 2006 Diogo Ferreira
* E-mail : diogo@underdev.org
*
* Ported to Compiz 0.9 by:
* Copyright : (C) 2009 by Sam Spilsbury
* E-mail : smspillaz@gmail.com
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
*
*/
#include <cmath>
#include <cstring>
#include <X11/Xatom.h>
#include <core/core.h>
#include <composite/composite.h>
#include <opengl/opengl.h>
#include <text/text.h>
#include <scale/scale.h>
#include "scaleaddon_options.h"
class ScaleAddonScreen :
public PluginClassHandler <ScaleAddonScreen, CompScreen>,
public ScreenInterface,
public CompositeScreenInterface,
public ScaleScreenInterface,
public ScaleaddonOptions
{
public:
ScaleAddonScreen (CompScreen *);
CompositeScreen *cScreen;
ScaleScreen *sScreen;
Window highlightedWindow;
Window lastHighlightedWindow;
int lastState;
float scale;
std::vector <ScaleSlot> paintSlots;
void
handleEvent (XEvent *);
bool
layoutSlotsAndAssignWindows ();
bool
layoutNaturalThumbs ();
bool
isOverlappingAny (ScaleWindow *w,
const std::map <ScaleWindow *, CompRegion>,
const CompRegion &border);
void
donePaint ();
void
checkWindowHighlight ();
bool
closeWindow (CompAction *action,
CompAction::State state,
CompOption::Vector options);
bool
pullWindow (CompAction *action,
CompAction::State state,
CompOption::Vector options);
bool
zoomWindow (CompAction *action,
CompAction::State state,
CompOption::Vector options);
void
handleCompizEvent (const char *pluginName,
const char *eventName,
CompOption::Vector &options);
void
optionChanged (CompOption *opt,
ScaleaddonOptions::Options num);
};
#define ADDON_SCREEN(s) \
ScaleAddonScreen *as = ScaleAddonScreen::get (s)
class ScaleAddonWindow :
public PluginClassHandler <ScaleAddonWindow, CompWindow>,
public ScaleWindowInterface
{
public:
ScaleAddonWindow (CompWindow *);
CompWindow *window;
ScaleWindow *sWindow;
CompositeWindow *cWindow;
ScaleSlot origSlot;
CompText text;
bool rescaled;
CompWindow *oldAbove;
void
scalePaintDecoration (const GLWindowPaintAttrib &,
const GLMatrix &,
const CompRegion &,
unsigned int);
void
scaleSelectWindow ();
void
renderTitle ();
void
drawTitle ();
void
drawHighlight ();
};
#define ADDON_WINDOW(w) \
ScaleAddonWindow *aw = ScaleAddonWindow::get (w)
class ScaleAddonPluginVTable :
public CompPlugin::VTableForScreenAndWindow <ScaleAddonScreen,
ScaleAddonWindow>
{
public:
bool init ();
};
|