130 lines
3.5 KiB
Go
130 lines
3.5 KiB
Go
|
// Copyright 2017 The Walk Authors. All rights reserved.
|
||
|
// Use of this source code is governed by a BSD-style
|
||
|
// license that can be found in the LICENSE file.
|
||
|
|
||
|
// +build windows
|
||
|
|
||
|
package walk
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"os"
|
||
|
"path/filepath"
|
||
|
"strconv"
|
||
|
)
|
||
|
|
||
|
func init() {
|
||
|
Resources.rootDirPath, _ = os.Getwd()
|
||
|
Resources.bitmaps = make(map[string]*Bitmap)
|
||
|
Resources.icons = make(map[string]*Icon)
|
||
|
}
|
||
|
|
||
|
// Resources is the singleton instance of ResourceManager.
|
||
|
var Resources ResourceManager
|
||
|
|
||
|
// ResourceManager is a cache for sharing resources like bitmaps and icons.
|
||
|
// The resources can be either embedded in the running executable
|
||
|
// file or located below a specified root directory in the file system.
|
||
|
type ResourceManager struct {
|
||
|
rootDirPath string
|
||
|
bitmaps map[string]*Bitmap
|
||
|
icons map[string]*Icon
|
||
|
}
|
||
|
|
||
|
// RootDirPath returns the root directory path where resources are to be loaded from.
|
||
|
func (rm *ResourceManager) RootDirPath() string {
|
||
|
return rm.rootDirPath
|
||
|
}
|
||
|
|
||
|
// SetRootDirPath sets the root directory path where resources are to be loaded from.
|
||
|
func (rm *ResourceManager) SetRootDirPath(rootDirPath string) error {
|
||
|
path, err := filepath.Abs(rootDirPath)
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
rm.rootDirPath = path
|
||
|
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
// Bitmap loads a bitmap from file or resource identified by name, or an error if it could not be
|
||
|
// found. When bitmap is loaded, 96dpi is assumed.
|
||
|
//
|
||
|
// Deprecated: Newer applications should use BitmapForDPI.
|
||
|
func (rm *ResourceManager) Bitmap(name string) (*Bitmap, error) {
|
||
|
return rm.BitmapForDPI(name, 96)
|
||
|
}
|
||
|
|
||
|
// BitmapForDPI loads a bitmap from file or resource identified by name, or an error if it could
|
||
|
// not be found. When bitmap is loaded, given DPI is assumed.
|
||
|
func (rm *ResourceManager) BitmapForDPI(name string, dpi int) (*Bitmap, error) {
|
||
|
if bm := rm.bitmaps[name]; bm != nil {
|
||
|
return bm, nil
|
||
|
}
|
||
|
|
||
|
if bm, err := NewBitmapFromFileForDPI(filepath.Join(rm.rootDirPath, name), dpi); err == nil {
|
||
|
rm.bitmaps[name] = bm
|
||
|
return bm, nil
|
||
|
}
|
||
|
|
||
|
if bm, err := NewBitmapFromResourceForDPI(name, dpi); err == nil {
|
||
|
rm.bitmaps[name] = bm
|
||
|
return bm, nil
|
||
|
}
|
||
|
|
||
|
if id, err := strconv.Atoi(name); err == nil {
|
||
|
if bm, err := NewBitmapFromResourceIdForDPI(id, dpi); err == nil {
|
||
|
rm.bitmaps[name] = bm
|
||
|
return bm, nil
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return nil, rm.notFoundErr("bitmap", name)
|
||
|
}
|
||
|
|
||
|
// Icon returns the Icon identified by name, or an error if it could not be found.
|
||
|
func (rm *ResourceManager) Icon(name string) (*Icon, error) {
|
||
|
if icon := rm.icons[name]; icon != nil {
|
||
|
return icon, nil
|
||
|
}
|
||
|
|
||
|
if icon, err := NewIconFromFile(filepath.Join(rm.rootDirPath, name)); err == nil {
|
||
|
rm.icons[name] = icon
|
||
|
return icon, nil
|
||
|
}
|
||
|
|
||
|
if icon, err := NewIconFromResource(name); err == nil {
|
||
|
rm.icons[name] = icon
|
||
|
return icon, nil
|
||
|
}
|
||
|
|
||
|
if id, err := strconv.Atoi(name); err == nil {
|
||
|
if icon, err := NewIconFromResourceId(id); err == nil {
|
||
|
rm.icons[name] = icon
|
||
|
return icon, nil
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return nil, rm.notFoundErr("icon", name)
|
||
|
}
|
||
|
|
||
|
// Image returns the Image identified by name, or an error if it could not be found.
|
||
|
func (rm *ResourceManager) Image(name string) (Image, error) {
|
||
|
if icon, err := rm.Icon(name); err == nil {
|
||
|
return icon, nil
|
||
|
}
|
||
|
|
||
|
if bm, err := rm.Bitmap(name); err == nil {
|
||
|
return bm, nil
|
||
|
}
|
||
|
|
||
|
return nil, rm.notFoundErr("image", name)
|
||
|
}
|
||
|
|
||
|
func (rm *ResourceManager) notFoundErr(typ, name string) error {
|
||
|
path := filepath.Clean(filepath.Join(rm.rootDirPath, name))
|
||
|
|
||
|
return newError(fmt.Sprintf("neither %s resource '%s' nor file '%s' could be found or the image format is not supported", typ, name, path))
|
||
|
}
|