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
|
/*
* ion/floatws/resize.h
*
* Copyright (c) Tuomo Valkonen 1999-2004.
*
* Ion is free software; you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; either version 2.1 of the License, or
* (at your option) any later version.
*/
#ifndef FLOAT_FLOATWS_RESIZE_H
#define FLOAT_FLOATWS_RESIZE_H
#include <ioncore/common.h>
#include <ioncore/window.h>
#include <ioncore/resize.h>
#include <ioncore/genframe.h>
#include "floatframe.h"
extern void floatframe_begin_resize(WFloatFrame *frame);
extern void floatframe_end_resize(WFloatFrame *frame);
extern void floatframe_cancel_resize(WFloatFrame *frame);
extern void floatframe_do_move(WFloatFrame *frame, int horizmul, int vertmul);
extern void floatframe_do_resize(WFloatFrame *frame, int left, int right,
int top, int bottom);
#endif /* FLOAT_FLOATWS_RESIZE_H */
|