~ubuntu-branches/ubuntu/trusty/moon/trusty

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
 * tilesource.cpp
 *
 * Contact:
 *   Moonlight List (moonlight-list@lists.ximian.com)
 *
 * Copyright 2007-2008 Novell, Inc. (http://www.novell.com)
 *
 * See the LICENSE file included with the distribution for details.
 * 
 */

#include "tilesource.h"

MultiScaleTileSource::MultiScaleTileSource ()
{
	imageWidth = -1;
}

int 
MultiScaleTileSource::GetImageWidth ()
{
	return imageWidth;
}

void
MultiScaleTileSource::SetImageWidth (int width)
{
	imageWidth = width;
}

int 
MultiScaleTileSource::GetImageHeight ()
{
	return imageHeight;
}

void
MultiScaleTileSource::SetImageHeight (int height)
{
	imageHeight = height;
}

int
MultiScaleTileSource::GetTileWidth ()
{
	return tileWidth;
}

void 
MultiScaleTileSource::SetTileWidth (int width)
{
	tileWidth = width;
}

int 
MultiScaleTileSource::GetTileHeight ()
{
	return tileHeight;
}

void 
MultiScaleTileSource::SetTileHeight (int height)
{
	tileHeight = height;
}

int 
MultiScaleTileSource::GetTileOverlap ()
{
	return tileOverlap;
}

void 
MultiScaleTileSource::SetTileOverlap (int overlap)
{
	tileOverlap = overlap;
}