Add missing header include guards in various gtk2_ardour headers

This commit is contained in:
Tim Mayberry 2015-12-08 08:08:19 +10:00
parent d4a64299c5
commit 7d31ec02b3
13 changed files with 62 additions and 2 deletions

View File

@ -17,6 +17,9 @@
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#ifndef __gtk_ardour_ambiguous_file_dialog_h__
#define __gtk_ardour_ambiguous_file_dialog_h__
#include <gtkmm/radiobutton.h>
#include "ardour_dialog.h"
@ -33,4 +36,4 @@ private:
bool rb_button_press (GdkEventButton*);
};
#endif // __gtk_ardour_ambiguous_file_dialog_h__

View File

@ -17,6 +17,9 @@
*/
#ifndef __gtk_ardour_editor_cursors_h__
#define __gtk_ardour_editor_cursors_h__
#include "pbd/signals.h"
#include "ardour/types.h"
@ -55,3 +58,5 @@ class EditorCursor {
ArdourCanvas::Arrow* _track_canvas_item;
framepos_t _current_frame;
};
#endif // __gtk_ardour_editor_cursors_h__

View File

@ -17,6 +17,9 @@
*/
#ifndef __gtk_ardour_editor_group_tabs_h__
#define __gtk_ardour_editor_group_tabs_h__
#include <gtkmm/menu.h>
#include "group_tabs.h"
@ -38,3 +41,5 @@ private:
void add_menu_items (Gtk::Menu *, ARDOUR::RouteGroup *);
ARDOUR::RouteList selected_routes () const;
};
#endif // __gtk_ardour_editor_group_tabs_h__

View File

@ -17,6 +17,9 @@
*/
#ifndef __gtk_ardour_editor_route_groups_h__
#define __gtk_ardour_editor_route_groups_h__
#include "gtkmm2ext/stateful_button.h"
#include "editor_component.h"
@ -93,4 +96,4 @@ private:
Gtk::ColorSelectionDialog color_dialog;
};
#endif // __gtk_ardour_editor_route_groups_h__

View File

@ -17,6 +17,9 @@
*/
#ifndef __gtk_ardour_editor_snapshots_h__
#define __gtk_ardour_editor_snapshots_h__
#include <gtkmm/widget.h>
#include <gtkmm/scrolledwindow.h>
#include <gtkmm/treemodel.h>
@ -62,3 +65,5 @@ private:
void remove (std::string);
void rename (std::string);
};
#endif // __gtk_ardour_editor_snapshots_h__

View File

@ -17,6 +17,9 @@
*/
#ifndef __gtk_ardour_group_tabs_h__
#define __gtk_ardour_group_tabs_h__
#include <gtkmm/menu.h>
#include "editor_component.h"
#include "gtkmm2ext/cairo_widget.h"
@ -150,3 +153,5 @@ private:
/** colors that have been used for new route group tabs */
static std::list<Gdk::Color> _used_colors;
};
#endif // __gtk_ardour_group_tabs_h__

View File

@ -17,6 +17,9 @@
*/
#ifndef __gtk_ardour_main_clock_h__
#define __gtk_ardour_main_clock_h__
#include "audio_clock.h"
/** A simple subclass of AudioClock that adds a few things to its context menu:
@ -42,3 +45,5 @@ private:
bool on_button_press_event (GdkEventButton *ev);
};
#endif // __gtk_ardour_main_clock_h__

View File

@ -17,6 +17,9 @@
*/
#ifndef __gtk_ardour_mixer_group_tabs_h__
#define __gtk_ardour_mixer_group_tabs_h__
#include "group_tabs.h"
class Mixer_UI;
@ -39,3 +42,5 @@ private:
Mixer_UI* _mixer;
};
#endif // __gtk_ardour_mixer_group_tabs_h__

View File

@ -17,6 +17,9 @@
*/
#ifndef __gtk_ardour_mono_panner_editor_h__
#define __gtk_ardour_mono_panner_editor_h__
#include <gtkmm.h>
#include "panner_editor.h"
@ -41,3 +44,5 @@ private:
PBD::ScopedConnectionList _connections;
};
#endif // __gtk_ardour_mono_panner_editor_h__

View File

@ -17,6 +17,9 @@
*/
#ifndef __gtk_ardour_panner_editor_h__
#define __gtk_ardour_panner_editor_h__
#include "ardour_dialog.h"
class PannerEditor : public ArdourDialog
@ -27,3 +30,5 @@ public:
private:
void close_button_clicked ();
};
#endif // __gtk_ardour_panner_editor_h__

View File

@ -31,6 +31,9 @@
*****************************************************************************/
#ifndef __gtk_ardour_sfdb_freesound_mootcher_h__
#define __gtk_ardour_sfdb_freesound_mootcher_h__
#include <string>
#include <stdio.h>
#include <cstring>
@ -120,3 +123,4 @@ private:
std::string xmlLocation;
};
#endif // __gtk_ardour_sfdb_freesound_mootcher_h__

View File

@ -17,6 +17,9 @@
*/
#ifndef __gtk_ardour_stereo_panner_editor_h__
#define __gtk_ardour_stereo_panner_editor_h__
#include <gtkmm.h>
#include "panner_editor.h"
@ -43,3 +46,5 @@ private:
PBD::ScopedConnectionList _connections;
};
#endif // __gtk_ardour_stereo_panner_editor_h__

View File

@ -17,6 +17,9 @@
*/
#ifndef __gtk_ardour_verbose_cursor_h__
#define __gtk_ardour_verbose_cursor_h__
#include "ardour/types.h"
#include "canvas/canvas.h"
@ -48,3 +51,5 @@ private:
void color_handler ();
};
#endif // __gtk_ardour_verbose_cursor_h__