aboutsummaryrefslogtreecommitdiff
path: root/pd/src/g_rtext.c
diff options
context:
space:
mode:
authorGuenter Geiger <ggeiger@users.sourceforge.net>2003-05-09 16:04:00 +0000
committerGuenter Geiger <ggeiger@users.sourceforge.net>2003-05-09 16:04:00 +0000
commit9c0e19a3be2288db79e2502e5fa450c3e20a668d (patch)
treeca97ce615e037a533304fc4660dcf372ca3b9cd6 /pd/src/g_rtext.c
parentef50dd62804d54af7da18d8bd8413c0dccd729b8 (diff)
This commit was generated by cvs2svn to compensate for changes in r610,
which included commits to RCS files with non-trunk default branches. svn path=/trunk/; revision=611
Diffstat (limited to 'pd/src/g_rtext.c')
-rw-r--r--pd/src/g_rtext.c30
1 files changed, 14 insertions, 16 deletions
diff --git a/pd/src/g_rtext.c b/pd/src/g_rtext.c
index 4b48dcc0..ee894b7e 100644
--- a/pd/src/g_rtext.c
+++ b/pd/src/g_rtext.c
@@ -10,7 +10,8 @@
#include <string.h>
#include <stdio.h>
#include <ctype.h>
-#include "m_imp.h"
+#include "m_pd.h"
+#include "s_stuff.h"
#include "g_canvas.h"
#include "t_tk.h"
@@ -23,9 +24,6 @@
#define SEND_UPDATE 2
#define SEND_CHECK 0
-static void rtext_senditup(t_rtext *x, int action, int *widthp, int *heightp,
- int *indexp);
-
struct _rtext
{
char *x_buf;
@@ -43,7 +41,7 @@ struct _rtext
struct _rtext *x_next;
};
-t_rtext *rtext_new(t_glist *glist, t_text *who, t_rtext *next, int senditup)
+t_rtext *rtext_new(t_glist *glist, t_text *who)
{
t_rtext *x = (t_rtext *)getbytes(sizeof *x);
int w = 0, h = 0, indx;
@@ -57,24 +55,13 @@ t_rtext *rtext_new(t_glist *glist, t_text *who, t_rtext *next, int senditup)
glist->gl_editor->e_rtext = x;
sprintf(x->x_tag, ".x%x.t%x", (t_int)glist_getcanvas(x->x_glist),
(t_int)x);
- if (senditup)
- rtext_senditup(x, SEND_FIRST, &w, &h, &indx);
return (x);
}
-/* iemlib version (now incorporated into rtext_new() via the "senditup" arg) */
-
-t_rtext *rtext_new_without_senditup(t_glist *glist, t_text *who, t_rtext *next)
-{
- return (rtext_new(glist, who, next, 0));
-}
-
static t_rtext *rtext_entered;
void rtext_free(t_rtext *x)
{
- sys_vgui(".x%x.c delete %s\n", glist_getcanvas(x->x_glist),
- x->x_tag);
if (x->x_glist->gl_editor->e_textedfor == x)
x->x_glist->gl_editor->e_textedfor = 0;
if (x->x_glist->gl_editor->e_rtext == x)
@@ -339,6 +326,17 @@ int rtext_height(t_rtext *x)
return (h);
}
+void rtext_draw(t_rtext *x)
+{
+ int w = 0, h = 0, indx;
+ rtext_senditup(x, SEND_FIRST, &w, &h, &indx);
+}
+
+void rtext_erase(t_rtext *x)
+{
+ sys_vgui(".x%x.c delete %s\n", glist_getcanvas(x->x_glist), x->x_tag);
+}
+
void rtext_displace(t_rtext *x, int dx, int dy)
{
sys_vgui(".x%x.c move %s %d %d\n", glist_getcanvas(x->x_glist),