mirror of
https://git.sr.ht/~thestr4ng3r/chiaki
synced 2025-03-12 05:25:23 -07:00
Added zoom and stretch modes to GUI to mirror the transform modes available on Android. They are reachable through a context menu or shortcuts (Ctrl+S/Ctrl+Z). CLI options --stretch and --zoom have been added as well. Co-authored-by: Florian Märkl <info@florianmaerkl.de>
13 lines
185 B
C
13 lines
185 B
C
// SPDX-License-Identifier: LicenseRef-AGPL-3.0-only-OpenSSL
|
|
|
|
#ifndef CHIAKI_TRANSFORMMODE_H
|
|
#define CHIAKI_TRANSFORMMODE_H
|
|
|
|
enum class TransformMode {
|
|
Fit,
|
|
Zoom,
|
|
Stretch
|
|
};
|
|
|
|
#endif
|