Symbol: ScreenshotCoordinate
src/apps/haikudepot/model/Model.cpp
707
Model::ScreenshotCached(const ScreenshotCoordinate& coord)
src/apps/haikudepot/model/Model.h
161
virtual void ScreenshotCached(const ScreenshotCoordinate& coord);
src/apps/haikudepot/model/Model.h
44
virtual void ScreenshotCached(const ScreenshotCoordinate& coordinate) = 0;
src/apps/haikudepot/model/PackageScreenshotRepository.cpp
111
PackageScreenshotRepository::HasCachedScreenshot(const ScreenshotCoordinate& coord, bool* value)
src/apps/haikudepot/model/PackageScreenshotRepository.cpp
142
PackageScreenshotRepository::CacheScreenshot(const ScreenshotCoordinate& coord)
src/apps/haikudepot/model/PackageScreenshotRepository.cpp
192
PackageScreenshotRepository::_DownloadToLocalFile(const ScreenshotCoordinate& coord,
src/apps/haikudepot/model/PackageScreenshotRepository.cpp
218
PackageScreenshotRepository::_DeriveCachePath(const ScreenshotCoordinate& coord) const
src/apps/haikudepot/model/PackageScreenshotRepository.cpp
227
PackageScreenshotRepository::_CreateCachedData(const ScreenshotCoordinate& coord,
src/apps/haikudepot/model/PackageScreenshotRepository.cpp
46
PackageScreenshotRepository::LoadScreenshot(const ScreenshotCoordinate& coord,
src/apps/haikudepot/model/PackageScreenshotRepository.cpp
85
PackageScreenshotRepository::CacheAndLoadScreenshot(const ScreenshotCoordinate& coord,
src/apps/haikudepot/model/PackageScreenshotRepository.h
23
virtual void ScreenshotCached(const ScreenshotCoordinate& coord) = 0;
src/apps/haikudepot/model/PackageScreenshotRepository.h
43
status_t LoadScreenshot(const ScreenshotCoordinate& coord,
src/apps/haikudepot/model/PackageScreenshotRepository.h
45
status_t CacheAndLoadScreenshot(const ScreenshotCoordinate& coord,
src/apps/haikudepot/model/PackageScreenshotRepository.h
48
status_t HasCachedScreenshot(const ScreenshotCoordinate& coord, bool* value);
src/apps/haikudepot/model/PackageScreenshotRepository.h
49
status_t CacheScreenshot(const ScreenshotCoordinate& coord);
src/apps/haikudepot/model/PackageScreenshotRepository.h
58
status_t _DownloadToLocalFile(const ScreenshotCoordinate& coord,
src/apps/haikudepot/model/PackageScreenshotRepository.h
60
BPath _DeriveCachePath(const ScreenshotCoordinate& coord) const;
src/apps/haikudepot/model/PackageScreenshotRepository.h
61
status_t _CreateCachedData(const ScreenshotCoordinate& coord,
src/apps/haikudepot/model/ScreenshotCoordinate.cpp
102
ScreenshotCoordinate::Archive(BMessage* into, bool deep) const
src/apps/haikudepot/model/ScreenshotCoordinate.cpp
16
ScreenshotCoordinate::ScreenshotCoordinate()
src/apps/haikudepot/model/ScreenshotCoordinate.cpp
25
ScreenshotCoordinate::ScreenshotCoordinate(const BMessage* from)
src/apps/haikudepot/model/ScreenshotCoordinate.cpp
36
ScreenshotCoordinate::ScreenshotCoordinate(BString code, uint32 width, uint32 height)
src/apps/haikudepot/model/ScreenshotCoordinate.cpp
45
ScreenshotCoordinate::~ScreenshotCoordinate()
src/apps/haikudepot/model/ScreenshotCoordinate.cpp
51
ScreenshotCoordinate::Code() const
src/apps/haikudepot/model/ScreenshotCoordinate.cpp
58
ScreenshotCoordinate::Width() const
src/apps/haikudepot/model/ScreenshotCoordinate.cpp
65
ScreenshotCoordinate::Height() const
src/apps/haikudepot/model/ScreenshotCoordinate.cpp
72
ScreenshotCoordinate::IsValid() const
src/apps/haikudepot/model/ScreenshotCoordinate.cpp
79
ScreenshotCoordinate::operator==(const ScreenshotCoordinate& other) const
src/apps/haikudepot/model/ScreenshotCoordinate.cpp
86
ScreenshotCoordinate::Key() const
src/apps/haikudepot/model/ScreenshotCoordinate.cpp
95
ScreenshotCoordinate::CacheFilename() const
src/apps/haikudepot/model/ScreenshotCoordinate.h
18
class ScreenshotCoordinate : public BArchivable {
src/apps/haikudepot/model/ScreenshotCoordinate.h
20
ScreenshotCoordinate(const BMessage* from);
src/apps/haikudepot/model/ScreenshotCoordinate.h
21
ScreenshotCoordinate(BString code, uint32 width, uint32 height);
src/apps/haikudepot/model/ScreenshotCoordinate.h
22
ScreenshotCoordinate();
src/apps/haikudepot/model/ScreenshotCoordinate.h
23
virtual ~ScreenshotCoordinate();
src/apps/haikudepot/model/ScreenshotCoordinate.h
29
bool operator==(const ScreenshotCoordinate& other) const;
src/apps/haikudepot/process/ProcessCoordinatorFactory.cpp
141
ScreenshotCoordinate& screenshotCoordinate)
src/apps/haikudepot/process/ProcessCoordinatorFactory.h
37
Model* model, ScreenshotCoordinate& screenshotCoordinate);
src/apps/haikudepot/server/CacheScreenshotProcess.cpp
19
ScreenshotCoordinate& screenshotCoordinate)
src/apps/haikudepot/server/CacheScreenshotProcess.h
19
Model* model, ScreenshotCoordinate& screenshotCoordinate);
src/apps/haikudepot/server/CacheScreenshotProcess.h
30
ScreenshotCoordinate
src/apps/haikudepot/ui/MainWindow.cpp
162
virtual void ScreenshotCached(const ScreenshotCoordinate& coordinate)
src/apps/haikudepot/ui/MainWindow.cpp
1993
ScreenshotCoordinate coordinate(message);
src/apps/haikudepot/ui/PackageInfoView.cpp
1450
ScreenshotCoordinate desiredCoordinate = _ScreenshotThumbCoordinate(package);
src/apps/haikudepot/ui/PackageInfoView.cpp
1483
/*static*/ const ScreenshotCoordinate
src/apps/haikudepot/ui/PackageInfoView.cpp
1487
return ScreenshotCoordinate();
src/apps/haikudepot/ui/PackageInfoView.cpp
1492
return ScreenshotCoordinate();
src/apps/haikudepot/ui/PackageInfoView.cpp
1497
return ScreenshotCoordinate();
src/apps/haikudepot/ui/PackageInfoView.cpp
1503
return ScreenshotCoordinate(screenshot->Code(), screenshotSizeScaled + 1,
src/apps/haikudepot/ui/PackageInfoView.cpp
1522
PackageInfoView::HandleScreenshotCached(const ScreenshotCoordinate& coordinate)
src/apps/haikudepot/ui/PackageInfoView.cpp
1532
const ScreenshotCoordinate& coordinate)
src/apps/haikudepot/ui/PackageInfoView.cpp
1534
ScreenshotCoordinate desiredCoordinate = _ScreenshotThumbCoordinate(package);
src/apps/haikudepot/ui/PackageInfoView.h
46
void HandleScreenshotCached(const ScreenshotCoordinate& coordinate);
src/apps/haikudepot/ui/PackageInfoView.h
52
static const ScreenshotCoordinate
src/apps/haikudepot/ui/PackageInfoView.h
56
const ScreenshotCoordinate& coordinate);
src/apps/haikudepot/ui/ScreenshotWindow.cpp
288
ScreenshotCoordinate(info->Code(), info->Width(), info->Height()), screenshot);