summaryrefslogtreecommitdiff
path: root/src/split.h
diff options
context:
space:
mode:
authorsabetts <sabetts>2003-05-15 07:36:21 +0000
committersabetts <sabetts>2003-05-15 07:36:21 +0000
commit55fadaecf93dfdf6a7c9510098057c5152e3b920 (patch)
treef1fc81a4aa497466f1cf5a497386ae994265984c /src/split.h
parent2d8945e4ee37ceee9d58e91681c6d3722a83c956 (diff)
downloadratpoison-55fadaecf93dfdf6a7c9510098057c5152e3b920.zip
* src/data.h (struct rp_frame): renamed from rp_window_frame. All
dependant code updated. * src/main.c: remove child_info global. Add rp_children global. (chld_handler): update the terminated and status fields of any terminated children. * src/events.c (handle_signals): loop through each child process and remove them from the list. Print a message for any child that doesn't return a 0 status. * src/data.h (rp_child_info): new fields, terminated and node. remove child_info global. Add rp_children global. * src/actions.c (spawn): Add the command to the list of children.
Diffstat (limited to 'src/split.h')
-rw-r--r--src/split.h44
1 files changed, 22 insertions, 22 deletions
diff --git a/src/split.h b/src/split.h
index cf308ae..3dc113f 100644
--- a/src/split.h
+++ b/src/split.h
@@ -23,37 +23,37 @@
#define SPLIT_H
int num_frames (rp_screen *s);
-rp_window *set_frames_window (rp_window_frame *frame, rp_window *win);
-void cleanup_frame (rp_window_frame *frame);
-void maximize_all_windows_in_frame (rp_window_frame *frame);
-void h_split_frame (rp_window_frame *frame, int pixels);
-void v_split_frame (rp_window_frame *frame, int pixels);
+rp_window *set_frames_window (rp_frame *frame, rp_window *win);
+void cleanup_frame (rp_frame *frame);
+void maximize_all_windows_in_frame (rp_frame *frame);
+void h_split_frame (rp_frame *frame, int pixels);
+void v_split_frame (rp_frame *frame, int pixels);
void remove_all_splits ();
-void resize_shrink_to_window (rp_window_frame *frame);
-void resize_frame_horizontally (rp_window_frame *frame, int diff);
-void resize_frame_vertically (rp_window_frame *frame, int diff);
-void remove_frame (rp_window_frame *frame);
-rp_window *find_window_for_frame (rp_window_frame *frame);
-rp_window_frame *find_windows_frame (rp_window *win);
-rp_window_frame *find_frame_next (rp_window_frame *frame);
-rp_window_frame *find_frame_prev (rp_window_frame *frame);
+void resize_shrink_to_window (rp_frame *frame);
+void resize_frame_horizontally (rp_frame *frame, int diff);
+void resize_frame_vertically (rp_frame *frame, int diff);
+void remove_frame (rp_frame *frame);
+rp_window *find_window_for_frame (rp_frame *frame);
+rp_frame *find_windows_frame (rp_window *win);
+rp_frame *find_frame_next (rp_frame *frame);
+rp_frame *find_frame_prev (rp_frame *frame);
rp_window *current_window ();
void init_frame_lists ();
void init_frame_list (rp_screen *screen);
-void set_active_frame (rp_window_frame *frame);
-void blank_frame (rp_window_frame *frame);
+void set_active_frame (rp_frame *frame);
+void blank_frame (rp_frame *frame);
void show_frame_indicator ();
void hide_frame_indicator ();
void show_frame_message (char *msg);
-rp_window_frame *find_frame_right (rp_window_frame *frame);
-rp_window_frame *find_frame_left (rp_window_frame *frame);
-rp_window_frame *find_frame_down (rp_window_frame *frame);
-rp_window_frame *find_frame_up (rp_window_frame *frame);
-rp_window_frame *find_last_frame (rp_screen *s);
-rp_window_frame *find_frame_number (rp_screen *s, int num);
+rp_frame *find_frame_right (rp_frame *frame);
+rp_frame *find_frame_left (rp_frame *frame);
+rp_frame *find_frame_down (rp_frame *frame);
+rp_frame *find_frame_up (rp_frame *frame);
+rp_frame *find_last_frame (rp_screen *s);
+rp_frame *find_frame_number (rp_screen *s, int num);
-rp_window_frame *current_frame ();
+rp_frame *current_frame ();
#endif