Changeset 8f9a044


Ignore:
Timestamp:
Jun 3, 2010, 1:33:53 PM (14 years ago)
Author:
David Benjamin <davidben@mit.edu>
Branches:
master, release-1.10, release-1.7, release-1.8, release-1.9
Children:
853f397
Parents:
d7c1dbe
Message:
Move the standard callbacks into a separate file
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • Makefile.am

    rad788b5 r8f9a044  
    5252     glib_compat.c mainpanel.c msgwin.c sepbar.c
    5353
    54 NORMAL_SRCS = filterproc.c window.c
     54NORMAL_SRCS = filterproc.c window.c windowcb.c
    5555
    5656BASE_SRCS = $(CODELIST_SRCS) $(NORMAL_SRCS)
  • window.c

    rd7c1dbe r8f9a044  
    426426    wnoutrefresh(cursor->win);
    427427  }
    428 }
    429 
    430 void owl_window_erase_cb(owl_window *w, WINDOW *win, void *user_data)
    431 {
    432   werase(win);
    433   owl_window_dirty_children(w);
    434428}
    435429
  • window.h

    rd7c1dbe r8f9a044  
    5555void owl_window_resize(owl_window *w, int nlines, int ncols);
    5656
     57/* Standard callback functions in windowcb.c */
     58
    5759void owl_window_erase_cb(owl_window *w, WINDOW *win, void *user_data);
    5860
Note: See TracChangeset for help on using the changeset viewer.