diff options
Diffstat (limited to '')
-rw-r--r-- | client.c | 38 |
1 files changed, 1 insertions, 37 deletions
@@ -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.10 2008/01/11 16:06:44 oga Exp $ + * $Id: client.c,v 1.11 2008/01/16 11:39:20 oga Exp $ */ #include "headers.h" @@ -267,15 +267,6 @@ client_leave(struct client_ctx *cc) } void -client_nocurrent(void) -{ - if (_curcc != NULL) - client_setactive(_curcc, 0); - - _curcc = NULL; -} - -void client_setactive(struct client_ctx *cc, int fg) { struct screen_ctx* sc; @@ -362,19 +353,6 @@ client_maximize(struct client_ctx *cc) } void -client_push_geometry(struct client_ctx *cc) -{ - cc->savegeom = cc->geom; -} - -void -client_restore_geometry(struct client_ctx *cc) -{ - cc->geom = cc->savegeom; - client_resize(cc); -} - -void client_resize(struct client_ctx *cc) { XMoveResizeWindow(X_Dpy, cc->pwin, cc->geom.x - cc->bwidth, @@ -408,13 +386,6 @@ client_raise(struct client_ctx *cc) } void -client_warp(struct client_ctx *cc) -{ - client_raise(cc); - xu_ptr_setpos(cc->pwin, 0, 0); -} - -void client_ptrwarp(struct client_ctx *cc) { int x = cc->ptr.x, y = cc->ptr.y; @@ -880,13 +851,6 @@ client_vertmaximize(struct client_ctx *cc) } void -client_map(struct client_ctx *cc) -{ - /* mtf? */ - client_ptrwarp(cc); -} - -void client_mtf(struct client_ctx *cc) { struct screen_ctx *sc; |