aboutsummaryrefslogtreecommitdiffstats
path: root/client.c
diff options
context:
space:
mode:
authorokan2008-07-15 22:12:09 +0000
committerokan2008-07-15 22:12:09 +0000
commit1d49f9055c70bc386f7997ef9c5cc0147544c538 (patch)
treee385ddfb2df5c68eec977d0a4ab467c621740ad4 /client.c
parentf0173794de194ddd5eaddcd5af8793a3465b3bea (diff)
downloadcwm-1d49f9055c70bc386f7997ef9c5cc0147544c538.tar.gz
move client_vertmaximize to a more sensible location, purely for readability.
"don't mind at all" oga@
Diffstat (limited to 'client.c')
-rw-r--r--client.c40
1 files changed, 20 insertions, 20 deletions
diff --git a/client.c b/client.c
index de74324..e846697 100644
--- a/client.c
+++ b/client.c
@@ -15,7 +15,7 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
- * $Id: client.c,v 1.37 2008/07/15 22:06:48 okan Exp $
+ * $Id: client.c,v 1.38 2008/07/15 22:12:09 okan Exp $
*/
#include "headers.h"
@@ -339,6 +339,25 @@ client_maximize(struct client_ctx *cc)
}
void
+client_vertmaximize(struct client_ctx *cc)
+{
+ struct screen_ctx *sc = CCTOSC(cc);
+
+ if (cc->flags & CLIENT_VMAXIMIZED) {
+ cc->geom = cc->savegeom;
+ } else {
+ if (!(cc->flags & CLIENT_MAXIMIZED))
+ cc->savegeom = cc->geom;
+ cc->geom.y = cc->bwidth + Conf.gap_top;
+ cc->geom.height = (sc->ymax - cc->bwidth * 2) -
+ (Conf.gap_top + Conf.gap_bottom);
+ cc->flags |= CLIENT_DOVMAXIMIZE;
+ }
+
+ client_resize(cc);
+}
+
+void
client_resize(struct client_ctx *cc)
{
if (cc->flags & (CLIENT_MAXIMIZED | CLIENT_VMAXIMIZED))
@@ -693,25 +712,6 @@ client_placecalc(struct client_ctx *cc)
}
void
-client_vertmaximize(struct client_ctx *cc)
-{
- struct screen_ctx *sc = CCTOSC(cc);
-
- if (cc->flags & CLIENT_VMAXIMIZED) {
- cc->geom = cc->savegeom;
- } else {
- if (!(cc->flags & CLIENT_MAXIMIZED))
- cc->savegeom = cc->geom;
- cc->geom.y = cc->bwidth + Conf.gap_top;
- cc->geom.height = (sc->ymax - cc->bwidth * 2) -
- (Conf.gap_top + Conf.gap_bottom);
- cc->flags |= CLIENT_DOVMAXIMIZE;
- }
-
- client_resize(cc);
-}
-
-void
client_mtf(struct client_ctx *cc)
{
struct screen_ctx *sc;