~ubuntu-branches/ubuntu/wily/marble/wily-proposed

« back to all changes in this revision

Viewing changes to src/lib/marble/geodata/data/GeoDataPlacemark.h

  • Committer: Package Import Robot
  • Author(s): Scarlett Clark, Jonathan Riddell, Scarlett Clark
  • Date: 2014-07-24 23:38:32 UTC
  • mfrom: (1.5.2)
  • Revision ID: package-import@ubuntu.com-20140724233832-7v4421t4khrhw487
Tags: 4:4.13.90-0ubuntu1
[ Jonathan Riddell ]
* Switch to libmarblewidget19 for new soversion

[ Scarlett Clark ]
* New upstream beta release
* Update: do_not_install_private_headers. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
75
75
    ~GeoDataPlacemark();
76
76
 
77
77
    /**
78
 
    * comparison operator is implemented slightly different than one would expect.
79
 
    * Only Placemarks that are copies of each other are assumed to be equal.
 
78
    * Equality operators.
80
79
    */
81
80
    bool operator==( const GeoDataPlacemark& other ) const;
 
81
    bool operator!=( const GeoDataPlacemark& other ) const;
82
82
 
83
83
    /**
84
84
     * Return the coordinates of the placemark at time @p dateTime as a GeoDataCoordinates
176
176
    void setCountryCode( const QString &code );
177
177
 
178
178
    /**
 
179
     * Returns whether balloon is visible or not
 
180
     */
 
181
    bool isBalloonVisible() const;
 
182
 
 
183
    /**
 
184
     * Set visibility of the balloon
 
185
     */
 
186
    void setBalloonVisible( bool visible );
 
187
 
 
188
    /**
179
189
     * Serialize the Placemark to a data stream. This is a binary serialisation
180
190
     * and is deserialised using @see unpack()
181
191
     * @param stream the QDataStream to serialise object to.
211
221
    GeoDataLookAt *lookAt();
212
222
 
213
223
 private:
214
 
    GeoDataPlacemarkPrivate *p() const;
 
224
    GeoDataPlacemarkPrivate *p();
 
225
    const GeoDataPlacemarkPrivate *p() const;
215
226
};
216
227
 
217
228
}