Change .h -> .hpp in tools/ directory

This commit is contained in:
2015-01-09 22:32:47 -05:00
parent 1fc317d5af
commit 9f57f35428
80 changed files with 201 additions and 203 deletions

View File

@@ -13,7 +13,7 @@
#include <stdexcept>
#include "dialog.hpp"
#include "graphtool.h"
#include "graphtool.hpp"
#include <cmath>
#include <climits>

View File

@@ -18,7 +18,7 @@
#include <map>
#include <vector>
#include "control.hpp"
#include "graphtool.h" // for eFont
#include "graphtool.hpp" // for eFont
/// A button type.
enum eBtnType { // w x h

View File

@@ -9,11 +9,11 @@
#include "control.hpp"
#include <sstream>
#include "dialog.hpp"
#include "soundtool.h"
#include "soundtool.hpp"
#include "button.hpp"
#include "graphtool.h"
#include "graphtool.hpp"
#include "restypes.hpp"
#include "mathutil.h"
#include "mathutil.hpp"
extern bool play_sounds;

View File

@@ -10,8 +10,8 @@
#include <stdexcept>
#include <boost/type_traits/is_pointer.hpp>
#include "dialog.hpp"
#include "graphtool.h"
#include "soundtool.h"
#include "graphtool.hpp"
#include "soundtool.hpp"
using namespace std;
using namespace ticpp;
#include "pict.hpp"
@@ -20,9 +20,9 @@ using namespace ticpp;
#include "message.hpp"
#include "scrollbar.hpp"
#include "stack.hpp"
#include "winutil.h"
#include "mathutil.h"
#include "cursors.h"
#include "winutil.hpp"
#include "mathutil.hpp"
#include "cursors.hpp"
// TODO: Would be nice if I could avoid depending on mainPtr
extern sf::RenderWindow mainPtr;

View File

@@ -14,7 +14,7 @@
#include <boost/lexical_cast.hpp>
#include "dialog.hpp"
#include "dlogutil.hpp"
#include "mathutil.h"
#include "mathutil.hpp"
#include <array>
#include "message.hpp"

View File

@@ -16,8 +16,8 @@
#include <vector>
#include <array>
#include <functional>
#include "graphtool.h" // for pic_num_t
#include "soundtool.h" // for snd_num_t
#include "pictypes.hpp"
#include "soundtool.hpp" // for snd_num_t
#include "pict.hpp"
#include "dialog.hpp"
#include "button.hpp"

View File

@@ -13,9 +13,9 @@
#include <boost/lexical_cast.hpp>
#include "dialog.hpp"
#include "dlogutil.hpp"
#include "graphtool.h"
#include "winutil.h"
#include "cursors.h"
#include "graphtool.hpp"
#include "winutil.hpp"
#include "cursors.hpp"
void cTextField::attachClickHandler(click_callback_t) throw(xHandlerNotSupported){
throw xHandlerNotSupported(false);

View File

@@ -14,7 +14,7 @@
#include <string>
#include "control.hpp"
#include "graphtool.h"
#include "graphtool.hpp"
/// The field's expected input type.
enum eFldType {

View File

@@ -7,8 +7,8 @@
*/
#include "message.hpp"
#include "graphtool.h"
#include "mathutil.h"
#include "graphtool.hpp"
#include "mathutil.hpp"
#include "dialog.hpp"
extern sf::Texture bg_gworld;

View File

@@ -16,7 +16,7 @@
#include <string>
#include "control.hpp"
#include "graphtool.h" // for eFont
#include "graphtool.hpp" // for eFont
/// A simple static text message.
/// This class can also create a frame for grouping controls or a clickable area.

View File

@@ -11,7 +11,7 @@
#include <map>
#include <stdexcept>
#include "graphtool.h"
#include "graphtool.hpp"
#include "dialog.hpp"
#include "restypes.hpp"

View File

@@ -16,7 +16,6 @@
#include <vector>
#include <map>
#include "graphtool.h" // for pic_num_t
#include "control.hpp"
#include "pictypes.hpp"

View File

@@ -8,8 +8,8 @@
#include "scrollbar.hpp"
#include "restypes.hpp"
#include "graphtool.h"
#include "mathutil.h"
#include "graphtool.hpp"
#include "mathutil.hpp"
sf::Texture cScrollbar::scroll_gw;
tessel_ref_t cScrollbar::bar_tessel[2];

View File

@@ -13,7 +13,7 @@
/// Scrollbar-related classes and types.
#include "control.hpp"
#include "graphtool.h"
#include "graphtool.hpp"
/// A simple vertical scrollbar.
/// This has no coupling with scrollable data; that must be handled externally by