View | Details | Raw Unified
Collapse All | Expand All

(-) stellarium-0.7.1/src/observator.h (-2 / +2 lines)
 Lines 112-119   private: Link Here 
	string s_time_format_to_string(S_TIME_FORMAT) const;
	string s_time_format_to_string(S_TIME_FORMAT) const;
	// Convert the date format enum to its associated string and reverse
	// Convert the date format enum to its associated string and reverse
	S_DATE_FORMAT Observator::string_to_s_date_format(const string& df) const;
	S_DATE_FORMAT string_to_s_date_format(const string& df) const;
	string Observator::s_date_format_to_string(S_DATE_FORMAT df) const;
	string s_date_format_to_string(S_DATE_FORMAT df) const;
	// for changing position
	// for changing position
	bool flag_move_to;
	bool flag_move_to;
(-) stellarium-0.7.1/src/projector.h (-1 / +1 lines)
 Lines 75-81   public: Link Here 
	virtual void set_viewport(int x, int y, int w, int h);
	virtual void set_viewport(int x, int y, int w, int h);
	// Fill with black around the circle
	// Fill with black around the circle
	void Projector::draw_viewport_shape(void);
	void draw_viewport_shape(void);
	int viewW(void) const {return vec_viewport[2];}
	int viewW(void) const {return vec_viewport[2];}
	int viewH(void) const {return vec_viewport[3];}
	int viewH(void) const {return vec_viewport[3];}
(-) stellarium-0.7.1/src/stel_command_interface.h (-3 / +3 lines)
 Lines 43-51   class StelCommandInterface : CommandInte Link Here 
 public:
 public:
  StelCommandInterface(stel_core * core);
  StelCommandInterface(stel_core * core);
  virtual ~StelCommandInterface();
  virtual ~StelCommandInterface();
  virtual int StelCommandInterface::execute_command(string commandline);
  virtual int execute_command(string commandline);
  virtual int StelCommandInterface::execute_command(string command, double arg);
  virtual int execute_command(string command, double arg);
  virtual int StelCommandInterface::execute_command(string command, int arg);
  virtual int execute_command(string command, int arg);
  virtual int execute_command(string command, unsigned long int &wait, bool trusted);
  virtual int execute_command(string command, unsigned long int &wait, bool trusted);
  virtual int set_flag(string name, string value, bool &newval, bool trusted);
  virtual int set_flag(string name, string value, bool &newval, bool trusted);
  void update(int delta_time);
  void update(int delta_time);
(-) stellarium-0.7.1/src/stel_ui.h (-1 / +1 lines)
 Lines 316-322   private: Link Here 
	void tui_cb_sky_time();        // change effect parameters
	void tui_cb_sky_time();        // change effect parameters
	// Parse a file of type /usr/share/zoneinfo/zone.tab
	// Parse a file of type /usr/share/zoneinfo/zone.tab
	s_tui::MultiSet_item<string>* stel_ui::create_tree_from_time_zone_file(const string& zonetab);
	s_tui::MultiSet_item<string>* create_tree_from_time_zone_file(const string& zonetab);
	bool ScriptDirectoryRead;
	bool ScriptDirectoryRead;
};
};