You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdeedu/kstars/kstars/mapcanvas.cpp

131 lines
4.3 KiB

/***************************************************************************
mapcanvas.cpp - Trinity Desktop Planetarium
-------------------
begin : Tue Apr 10 2001
copyright : (C) 2001 by Jason Harris
email : jharris@30doradus.org
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#include <stdlib.h>
#include <kstandarddirs.h>
#include <tqpainter.h>
#include <tqpixmap.h>
#include "mapcanvas.h"
#include "locationdialog.h"
#include "kstars.h"
#include "kstarsdata.h"
MapCanvas::MapCanvas(TQWidget *parent, const char *name ) : TQWidget(parent,name) {
BGColor = "#33A";
setBackgroundColor( TQColor( BGColor ) );
setBackgroundMode( TQWidget::NoBackground );
Canvas = new TQPixmap();
bgImage = new TQPixmap();
LocationDialog *ld = (LocationDialog *)topLevelWidget();
KStars *ks = (KStars *)ld->parent();
TQString bgFile = ks->data()->stdDirs->findResource( "data", "kstars/geomap.png" );
bgImage->load( bgFile, "PNG" );
}
MapCanvas::~MapCanvas(){
delete bgImage;
delete Canvas;
}
void MapCanvas::setGeometry( int x, int y, int w, int h ) {
TQWidget::setGeometry( x, y, w, h );
Canvas->resize( w, h );
origin.setX( w/2 );
origin.setY( h/2 );
}
void MapCanvas::setGeometry( const TQRect &r ) {
TQWidget::setGeometry( r );
Canvas->resize( r.width(), r.height() );
origin.setX( r.width()/2 );
origin.setY( r.height()/2 );
}
void MapCanvas::mousePressEvent( TQMouseEvent *e ) {
LocationDialog *ld = (LocationDialog *)topLevelWidget();
//Determine Lat/Long corresponding to event press
int lng = ( e->x() - origin.x() );
int lat = ( origin.y() - e->y() );
ld->findCitiesNear( lng, lat );
}
void MapCanvas::paintEvent( TQPaintEvent * ) {
TQPainter pcanvas;
LocationDialog *ld = (LocationDialog *)topLevelWidget();
KStars *ks = (KStars *)ld->parent();
//prepare the canvas
pcanvas.begin( Canvas );
// pcanvas.fillRect( 0, 0, width(), height(), TQBrush( TQColor( BGColor ) ) );
pcanvas.drawPixmap( 0, 0, *bgImage );
// pcanvas.setBrush( white );
pcanvas.setPen( TQPen( TQColor( "SlateGrey" ) ) );
//Draw cities
TQPoint o;
for ( GeoLocation *g=ks->data()->geoList.first(); g; g = ks->data()->geoList.next() ) {
o.setX( int( g->lng()->Degrees() + origin.x() ) );
o.setY( height() - int( g->lat()->Degrees() + origin.y() ) );
if ( o.x() >= 0 && o.x() <= width() && o.y() >=0 && o.y() <=height() ) {
pcanvas.drawPoint( o.x(), o.y() );
}
}
//redraw the cities that appear in the filtered list, with a white pen
//If the list has not been filtered, skip the redraw.
if ( ld->filteredList()->count() ) {
pcanvas.setPen( white );
for ( GeoLocation *g=ld->filteredList()->first(); g; g = ld->filteredList()->next() ) {
o.setX( int( g->lng()->Degrees() + origin.x() ) );
o.setY( height() - int( g->lat()->Degrees() + origin.y() ) );
if ( o.x() >= 0 && o.x() <= width() && o.y() >=0 && o.y() <=height() ) {
pcanvas.drawPoint( o.x(), o.y() );
}
}
}
GeoLocation *g = ld->selectedCity();
if ( g ) {
o.setX( int( g->lng()->Degrees() + origin.x() ) );
o.setY( height() - int( g->lat()->Degrees() + origin.y() ) );
pcanvas.setPen( red );
pcanvas.setBrush( red );
pcanvas.drawEllipse( o.x()-3, o.y()-3, 6, 6 );
pcanvas.moveTo( o.x()-16, o.y() );
pcanvas.lineTo( o.x()-8, o.y() );
pcanvas.moveTo( o.x()+8, o.y() );
pcanvas.lineTo( o.x()+16, o.y() );
pcanvas.moveTo( o.x(), o.y()-16 );
pcanvas.lineTo( o.x(), o.y()-8 );
pcanvas.moveTo( o.x(), o.y()+8 );
pcanvas.lineTo( o.x(), o.y()+16 );
pcanvas.setPen( white );
pcanvas.setBrush( white );
}
pcanvas.end();
bitBlt( this, 0, 0, Canvas );
}
#include "mapcanvas.moc"