Lines Matching refs:iconSet

33         virtual void draw(int x, int y, IconSet &iconSet, bool highlighted);
116 void NearRule::draw(int x, int y, IconSet &iconSet, bool h) in draw() argument
118 SDL_Surface *icon = iconSet.getLargeIcon(thing1[0], thing1[1], h); in draw()
120 screen.draw(x + icon->h, y, iconSet.getNearHintIcon(h)); in draw()
121 screen.draw(x + icon->h*2, y, iconSet.getLargeIcon(thing2[0], thing2[1], h)); in draw()
147 virtual void draw(int x, int y, IconSet &iconSet, bool highlighted);
202 void DirectionRule::draw(int x, int y, IconSet &iconSet, bool h) in draw() argument
204 SDL_Surface *icon = iconSet.getLargeIcon(row1, thing1, h); in draw()
206 screen.draw(x + icon->h, y, iconSet.getSideHintIcon(h)); in draw()
207 screen.draw(x + icon->h*2, y, iconSet.getLargeIcon(row2, thing2, h)); in draw()
231 virtual void draw(int x, int y, IconSet &iconSet, bool highlighted) { }; in draw() argument
284 virtual void draw(int x, int y, IconSet &iconSet, bool highlighted);
338 void UnderRule::draw(int x, int y, IconSet &iconSet, bool h) in draw() argument
340 SDL_Surface *icon = iconSet.getLargeIcon(row1, thing1, h); in draw()
342 screen.draw(x, y + icon->h, iconSet.getLargeIcon(row2, thing2, h)); in draw()
370 virtual void draw(int x, int y, IconSet &iconSet, bool highlighted);
486 void BetweenRule::draw(int x, int y, IconSet &iconSet, bool h) in draw() argument
488 SDL_Surface *icon = iconSet.getLargeIcon(row1, thing1, h); in draw()
490 screen.draw(x + icon->w, y, iconSet.getLargeIcon(centerRow, centerThing, h)); in draw()
491 screen.draw(x + icon->w*2, y, iconSet.getLargeIcon(row2, thing2, h)); in draw()
492 SDL_Surface *arrow = iconSet.getBetweenArrow(h); in draw()