PCL
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
ImageWindow.h
Go to the documentation of this file.
1 // ____ ______ __
2 // / __ \ / ____// /
3 // / /_/ // / / /
4 // / ____// /___ / /___ PixInsight Class Library
5 // /_/ \____//_____/ PCL 2.9.3
6 // ----------------------------------------------------------------------------
7 // pcl/ImageWindow.h - Released 2025-02-21T12:13:32Z
8 // ----------------------------------------------------------------------------
9 // This file is part of the PixInsight Class Library (PCL).
10 // PCL is a multiplatform C++ framework for development of PixInsight modules.
11 //
12 // Copyright (c) 2003-2025 Pleiades Astrophoto S.L. All Rights Reserved.
13 //
14 // Redistribution and use in both source and binary forms, with or without
15 // modification, is permitted provided that the following conditions are met:
16 //
17 // 1. All redistributions of source code must retain the above copyright
18 // notice, this list of conditions and the following disclaimer.
19 //
20 // 2. All redistributions in binary form must reproduce the above copyright
21 // notice, this list of conditions and the following disclaimer in the
22 // documentation and/or other materials provided with the distribution.
23 //
24 // 3. Neither the names "PixInsight" and "Pleiades Astrophoto", nor the names
25 // of their contributors, may be used to endorse or promote products derived
26 // from this software without specific prior written permission. For written
27 // permission, please contact info@pixinsight.com.
28 //
29 // 4. All products derived from this software, in any form whatsoever, must
30 // reproduce the following acknowledgment in the end-user documentation
31 // and/or other materials provided with the product:
32 //
33 // "This product is based on software from the PixInsight project, developed
34 // by Pleiades Astrophoto and its contributors (https://pixinsight.com/)."
35 //
36 // Alternatively, if that is where third-party acknowledgments normally
37 // appear, this acknowledgment must be reproduced in the product itself.
38 //
39 // THIS SOFTWARE IS PROVIDED BY PLEIADES ASTROPHOTO AND ITS CONTRIBUTORS
40 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
41 // TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
42 // PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL PLEIADES ASTROPHOTO OR ITS
43 // CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
44 // EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, BUSINESS
45 // INTERRUPTION; PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; AND LOSS OF USE,
46 // DATA OR PROFITS) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
47 // CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
48 // ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
49 // POSSIBILITY OF SUCH DAMAGE.
50 // ----------------------------------------------------------------------------
51 
52 #ifndef __PCL_ImageWindow_h
53 #define __PCL_ImageWindow_h
54 
56 
57 #include <pcl/Defs.h>
58 
59 #include <pcl/Flags.h>
61 
62 #ifndef __PCL_BUILDING_PIXINSIGHT_APPLICATION
63 
64 #include <pcl/Bitmap.h>
65 #include <pcl/ByteArray.h>
66 #include <pcl/FITSHeaderKeyword.h>
67 #include <pcl/ImageOptions.h>
68 #include <pcl/UIObject.h>
69 #include <pcl/View.h>
70 
71 #endif // !__PCL_BUILDING_PIXINSIGHT_APPLICATION
72 
73 namespace pcl
74 {
75 
76 #ifndef __PCL_BUILDING_PIXINSIGHT_APPLICATION
77 
78 class RGBColorSystem;
79 class ICCProfile;
80 class ProcessInterface;
81 
82 #endif // !__PCL_BUILDING_PIXINSIGHT_APPLICATION
83 
84 // ----------------------------------------------------------------------------
85 
103 namespace ImageMode
104 {
105  enum value_type
106  {
107  Invalid = -1, // Represents an invalid or unsupported mode
108  Readout = 0, // Default mode, click to get real-time readouts
109  ZoomIn, // Click to zoom in the current view
110  ZoomOut, // Click to zoom out the current view
111  Pan, // Click and drag to pan the current view
112  Center, // Click to center the view at the mouse position
113  NewPreview, // Click and drag to define a new preview
114  EditPreview, // Click and drag to change an existing preview
115  DynamicOperation, // Module-defined dynamic operation
116 
117  NumberOfModes,
118 
119  Default = Readout
120  };
121 
126  inline bool IsValidPreviewMode( value_type m )
127  {
128  return m != NewPreview && m != EditPreview;
129  }
130 
135  inline bool IsValidMainViewMode( value_type m )
136  {
137  return !IsValidPreviewMode( m );
138  }
139 }
140 
141 // ----------------------------------------------------------------------------
142 
161 namespace BackgroundBrush
162 {
163  enum value_type
164  {
165  Small, // Small chessboard pattern
166  Medium, // Medium chessboard pattern
167  Large, // Large chessboard pattern
168  SmallCrossPattern, // Small cross pattern
169  MediumCrossPattern, // Medium cross pattern
170  LargeCrossPattern, // Large cross pattern
171  SmallDiagPattern, // Small diagonal pattern
172  MediumDiagPattern, // Medium diagonal pattern
173  LargeDiagPattern, // Large diagonal pattern
174  Solid, // Solid brush with the foreground color
175 
176  NumberOfBrushes,
177 
178  Default = Small
179  };
180 }
181 
182 // ----------------------------------------------------------------------------
183 
195 namespace TransparencyMode
196 {
197  enum value_type
198  {
199  Hide, // Don't show transparencies
200  BackgroundBrush, // Use the transparency background brush
201  Color, // Use an opaque background color
202 
203  NumberOfModes,
204 
205  Default = BackgroundBrush
206  };
207 };
208 
209 // ----------------------------------------------------------------------------
210 
239 namespace UndoFlag
240 {
241  /*
242  * ### TODO: PCL 2.x: Get rid of all project depencies on UndoFlags.
243  */
244  enum mask_type
245  {
246  DefaultMode = 0x00000000, // Save pixel data, astrometric solution and previews
247  PixelData = 0x00000001, // Save pixel data
248  RGBWS = 0x00000002, // RGB Working Space data
249  ICCProfile = 0x00000004, // ICC profile
250  Keywords = 0x00000008, // %FITS keywords
251  //Metadata = 0x00000010, // ### DEPRECATED - Keep unused for now, for compatibility with existing projects
252  FormatData = 0x00000020, // Format-specific data
253  ImageId = 0x00000040, // %Image identifier
254  Resolution = 0x00000080, // %Image resolution
255  AstrometricSolution = 0x00000100, // Save the current astrometric solution
256  ViewProperties = 0x00010000, // The process modifies view properties (since core build 1607)
257  All = 0x000FFFFF, // Save all data items
258  DeletePropertiesOnEntry = 0x01000000, // Destroy/delete non-permanent view properties before execution
259  DeletePropertiesOnExit = 0x02000000, // Destroy/delete non-permanent view properties after execution
260  ExcludePreviews = 0x80000000, // Don't save state of previews
261  ExcludeMaskRelations = 0x40000000 // Don't save masking dependencies
262  };
263 }
264 
269 using UndoFlags = Flags<UndoFlag::mask_type>;
270 
271 // ----------------------------------------------------------------------------
272 
273 #ifndef __PCL_BUILDING_PIXINSIGHT_APPLICATION
274 
275 // ----------------------------------------------------------------------------
276 
286 class PCL_CLASS ImageWindow : public UIObject
287 {
288 public:
289 
294  using gui_mode = ImageMode::value_type;
295 
301  using display_channel = DisplayChannel::value_type;
302 
308  using mask_mode = MaskMode::value_type;
309 
315  using background_brush = BackgroundBrush::value_type;
316 
322  using transparency_mode = TransparencyMode::value_type;
323 
328  using image_type = pcl::ImageType::value_type;
329 
334  ImageWindow() = default;
335 
381  ImageWindow( int width, int height, int numberOfChannels = 1,
382  int bitsPerSample = 32, bool floatSample = true, bool color = false,
383  bool initialProcessing = true,
384  const IsoString& id = IsoString() );
385 
386  ImageWindow( int width, int height, int numberOfChannels,
387  int bitsPerSample, bool floatSample, bool color,
388  bool initialProcessing,
389  const IsoString::ustring_base& id )
390  : ImageWindow( width, height, numberOfChannels,
391  bitsPerSample, floatSample, color,
392  initialProcessing,
393  IsoString( id ) )
394  {
395  }
396 
409  : UIObject( w )
410  {
411  }
412 
417  : UIObject( std::move( x ) )
418  {
419  }
420 
428  ~ImageWindow() override
429  {
430  }
431 
443  ImageWindow& operator =( const ImageWindow& window )
444  {
445  Assign( window );
446  return *this;
447  }
448 
452  ImageWindow& operator =( ImageWindow&& x )
453  {
454  Transfer( x );
455  return *this;
456  }
457 
463  static ImageWindow& Null();
464 
539  static Array<ImageWindow> Open( const String& url,
540  const IsoString& id = IsoString(),
541  const IsoString& formatHints = IsoString(),
542  bool asCopy = false,
543  bool allowMessages = true );
544 
545  template <class S1, class S2>
546  static Array<ImageWindow> Open( const String& url,
547  const S1& id,
548  const S2& formatHints,
549  bool asCopy = false,
550  bool allowMessages = true )
551  {
552  return Open( url, IsoString( id ), IsoString( formatHints ), asCopy, allowMessages );
553  }
554 
560  bool IsNew() const;
561 
574  bool IsACopy() const;
575 
585  String FilePath() const;
586 
592  String FileURL() const;
593 
598  bool HasURL() const
599  {
600  return !FileURL().IsEmpty();
601  }
602 
608 
618  image_type ImageType() const;
619 
634  void SetImageType( image_type type, bool notify = true );
635 
642 
647  bool IsModified() const
648  {
649  return ModifyCount() > 0;
650  }
651 
672  bool Close();
673 
681  void ForceClose();
682 
689  View MainView() const;
690 
698  View CurrentView() const;
699 
703  void SelectView( View& );
704 
709  {
710  View v( MainView() ); SelectView( v );
711  }
712 
717 
722  bool IsValidView( const View& ) const;
723 
727  int NumberOfPreviews() const;
728 
733  bool HasPreviews() const
734  {
735  return NumberOfPreviews() > 0;
736  }
737 
744 
752  View PreviewById( const IsoString& previewId ) const;
753 
754  View PreviewById( const IsoString::ustring_base& previewId ) const
755  {
756  return PreviewById( IsoString( previewId ) );
757  }
758 
764  bool PreviewExists( const IsoString& previewId ) const
765  {
766  return !IsNull() && !PreviewById( previewId ).IsNull();
767  }
768 
769  bool PreviewExists( const IsoString::ustring_base& previewId ) const
770  {
771  return PreviewExists( IsoString( previewId ) );
772  }
773 
786 
792  void SelectPreview( View& );
793 
799  void SelectPreview( const IsoString& previewId )
800  {
801  View v( PreviewById( previewId ) ), SelectPreview( v );
802  }
803 
804  void SelectPreview( const IsoString::ustring_base& previewId )
805  {
806  SelectPreview( IsoString( previewId ) );
807  }
808 
817  View CreatePreview( const Rect& r, const IsoString& previewId = IsoString() )
818  {
819  return CreatePreview( r.x0, r.y0, r.x1, r.y1, previewId );
820  }
821 
822  View CreatePreview( const Rect& r, const IsoString::ustring_base& previewId )
823  {
824  return CreatePreview( r, IsoString( previewId ) );
825  }
826 
846  View CreatePreview( int x0, int y0, int x1, int y1, const IsoString& previewId = IsoString() );
847 
848  View CreatePreview( int x0, int y0, int x1, int y1, const IsoString::ustring_base& previewId )
849  {
850  return CreatePreview( x0, y0, x1, y1, IsoString( previewId ) );
851  }
852 
861  void ModifyPreview( const IsoString& previewId, const Rect& r, const IsoString& newId = IsoString() )
862  {
863  ModifyPreview( previewId, r.x0, r.y0, r.x1, r.y1, newId );
864  }
865 
866  void ModifyPreview( const IsoString::ustring_base& previewId, const Rect& r )
867  {
868  ModifyPreview( IsoString( previewId ), r );
869  }
870 
871  void ModifyPreview( const IsoString::ustring_base& previewId, const Rect& r, const IsoString::ustring_base& newId )
872  {
873  ModifyPreview( IsoString( previewId ), r, IsoString( newId ) );
874  }
875 
898  void ModifyPreview( const IsoString& previewId, int x0, int y0, int x1, int y1,
899  const IsoString& newId = IsoString() );
900 
901  void ModifyPreview( const IsoString::ustring_base& previewId, int x0, int y0, int x1, int y1 )
902  {
903  ModifyPreview( IsoString( previewId ), x0, y0, x1, y1 );
904  }
905 
906  void ModifyPreview( const IsoString::ustring_base& previewId, int x0, int y0, int x1, int y1,
907  const IsoString::ustring_base& newId )
908  {
909  ModifyPreview( IsoString( previewId ), x0, y0, x1, y1, IsoString( newId ) );
910  }
911 
919  Rect PreviewRect( const IsoString& previewId ) const;
920 
921  Rect PreviewRect( const IsoString::ustring_base& previewId ) const
922  {
923  return PreviewRect( IsoString( previewId ) );
924  }
925 
935  void DeletePreview( const IsoString& previewId );
936 
937  void DeletePreview( const IsoString::ustring_base& previewId )
938  {
939  DeletePreview( IsoString( previewId ) );
940  }
941 
949 
961  void GetSampleFormat( int& bitsPerSample, bool& floatSample ) const;
962 
976  void SetSampleFormat( int bitsPerSample, bool floatSample );
977 
982  ImageWindow Mask() const;
983 
992  void SetMask( ImageWindow& w, bool inverted = false );
993 
997  void RemoveMask()
998  {
999  SetMask( Null() );
1000  }
1001 
1005  bool IsMaskInverted() const;
1006 
1010  void InvertMask( bool invert = true )
1011  {
1012  ImageWindow mask = Mask();
1013  SetMask( mask, invert );
1014  }
1015 
1019  bool IsMaskEnabled() const;
1020 
1024  void EnableMask( bool = true );
1025 
1029  void DisableMask( bool disable = true )
1030  {
1031  EnableMask( !disable );
1032  }
1033 
1037  bool IsMaskVisible() const;
1038 
1042  void ShowMask( bool = true );
1043 
1047  void HideMask( bool hide = true )
1048  {
1049  ShowMask( !hide );
1050  }
1051 
1064 
1069  bool HasMaskReferences() const;
1070 
1079 
1086 
1094  void GetRGBWS( RGBColorSystem& rgbws ) const;
1095 
1102  void SetRGBWS( const RGBColorSystem& rgbws );
1103 
1111  bool UsingGlobalRGBWS() const;
1112 
1120 
1133  static void GetGlobalRGBWS( RGBColorSystem& rgbws );
1134 
1145  static void SetGlobalRGBWS( const RGBColorSystem& rgbws );
1146 
1151 
1171  void EnableColorManagement( bool = true );
1172 
1182  void DisableColorManagement( bool disable = true )
1183  {
1184  EnableColorManagement( !disable );
1185  }
1186 
1191  bool IsProofingEnabled() const;
1192 
1206  void EnableProofing( bool = true );
1207 
1217  void DisableProofing( bool disable = true )
1218  {
1219  EnableProofing( !disable );
1220  }
1221 
1226  bool IsGamutCheckEnabled() const;
1227 
1241  void EnableGamutCheck( bool = true );
1242 
1254  void DisableGamutCheck( bool disable = true )
1255  {
1256  EnableGamutCheck( !disable );
1257  }
1258 
1276  void SetColorManagementFeatures( bool cmEnabled, bool proofing, bool gamutCheck );
1277 
1284  bool GetICCProfile( ICCProfile& icc ) const;
1285 
1296  void SetICCProfile( const ICCProfile& icc );
1297 
1308  void SetICCProfile( const String& filePath );
1309 
1321 
1328 
1339  bool GetKeywords( FITSKeywordArray& keywords ) const
1340  {
1341  keywords = Keywords();
1342  return !keywords.IsEmpty();
1343  }
1344 
1355  void SetKeywords( const FITSKeywordArray& keywords );
1356 
1361 
1368 
1389  bool RegenerateAstrometricSolution( bool allowGUIMessages = true, bool notify = true );
1390 
1413  bool CopyAstrometricSolution( const ImageWindow& source, bool notify = true );
1414 
1448  void ClearAstrometricSolution( bool notify = true );
1449 
1463  void UpdateAstrometryMetadata( bool notify = true );
1464 
1495  bool ImageToCelestial( double& x, double& y, bool rawRA = false ) const;
1496 
1512  template <typename T>
1513  bool ImageToCelestial( DPoint& pRD, const GenericPoint<T>& pI, bool rawRA = false ) const
1514  {
1515  DPoint qI( double( pI.x ), double( pI.y ) );
1516  if ( ImageToCelestial( qI.x, qI.y, rawRA ) )
1517  {
1518  pRD = qI;
1519  return true;
1520  }
1521  return false;
1522  }
1523 
1545  bool CelestialToImage( double& ra, double& dec ) const;
1546 
1561  bool CelestialToImage( DPoint& pI, const DPoint& pRD ) const
1562  {
1563  DPoint qI = pRD;
1564  if ( CelestialToImage( qI.x, qI.y ) )
1565  {
1566  pI = qI;
1567  return true;
1568  }
1569  return false;
1570  }
1571 
1590  void GetResolution( double& xRes, double& yRes, bool& metric ) const;
1591 
1606  void SetResolution( double xRes, double yRes, bool metric = false );
1607 
1621  void SetResolution( double r, bool metric = false )
1622  {
1623  SetResolution( r, r, metric );
1624  }
1625 
1647  static void GetDefaultResolution( double& xRes, double& yRes, bool& metric );
1648 
1662 
1676 
1688 
1700 
1715 
1739  static bool SetSwapDirectories( const StringList& directories );
1740 
1755  static int CursorTolerance();
1756 
1763  static gui_mode CurrentMode();
1764 
1775  static void SelectMode( gui_mode mode );
1776 
1783  display_channel CurrentChannel() const;
1784 
1790  {
1791  return CurrentChannel() >= DisplayChannel::Alpha;
1792  }
1793 
1804  {
1805  return CurrentChannel() - DisplayChannel::Alpha;
1806  }
1807 
1822  void SelectChannel( display_channel c );
1823 
1829  mask_mode MaskMode() const;
1830 
1839  void SetMaskMode( mask_mode mode );
1840 
1863  static background_brush GetBackgroundBrush( uint32& fgColor, uint32& bgColor );
1864 
1888  static void SetBackgroundBrush( background_brush brush, uint32 fgColor = 0, uint32 bgColor = 0 );
1889 
1896  transparency_mode TransparencyMode() const;
1897 
1906 
1915  {
1916  return TransparencyMode() != pcl::TransparencyMode::Hide;
1917  }
1918 
1931  void SetTransparencyMode( transparency_mode mode, RGBA color = 0 );
1932 
1941  {
1942  SetTransparencyMode( pcl::TransparencyMode::Hide );
1943  }
1944 
1990  void SetViewport( double cx, double cy, int zoom = 0 );
1991 
2002  void SetViewport( const DPoint& center, int zoom = 0 )
2003  {
2004  SetViewport( center.x, center.y, zoom );
2005  }
2006 
2016  void FitWindow();
2017 
2048  void ZoomToFit( bool optimalFit = true,
2049  bool allowMagnification = true,
2050  bool allowAnimations = true,
2051  bool noLimits = false );
2052 
2059  int ZoomFactor() const;
2060 
2068  void SetZoomFactor( int z );
2069 
2076  void ZoomIn()
2077  {
2078  int z = ZoomFactor() + 1;
2079  SetZoomFactor( (z > 0) ? z : +1 );
2080  }
2081 
2088  void ZoomOut()
2089  {
2090  int z = ZoomFactor() - 1;
2091  SetZoomFactor( (z > 0 || z < -1) ? z : -2 );
2092  }
2093 
2108  void GetViewportSize( int& width, int& height ) const;
2109 
2113  int ViewportWidth() const
2114  {
2115  int w, dum;
2116  GetViewportSize( w, dum );
2117  return w;
2118  }
2119 
2123  int ViewportHeight() const
2124  {
2125  int dum, h;
2126  GetViewportSize( dum, h );
2127  return h;
2128  }
2129 
2140 
2150  void SetViewportPosition( int x, int y );
2151 
2160  void SetViewportPosition( const Point& p )
2161  {
2162  SetViewportPosition( p.x, p.y );
2163  }
2164 
2173 
2179  {
2180  return VisibleViewportRect().Width();
2181  }
2182 
2188  {
2189  return VisibleViewportRect().Height();
2190  }
2191 
2195  bool IsVisible() const;
2196 
2212  void Show( bool fitWindow = true );
2213 
2218  void Hide();
2219 
2223  bool IsIconic() const;
2224 
2228  void Iconize();
2229 
2233  void Deiconize();
2234 
2245 
2256  void SendToBack();
2257 
2266  static bool IsDynamicSessionActive();
2267 
2283 
2298  static bool TerminateDynamicSession( bool closeInterface = true );
2299 
2318  void SetDynamicCursor( const char** xpm, int hx = 0, int hy = 0 );
2319 
2332  void SetDynamicCursor( const char** xpm, const Point& p )
2333  {
2334  SetDynamicCursor( xpm, p.x, p.y );
2335  }
2336 
2359  void SetDynamicCursor( const Bitmap& bmp, int hx = 0, int hy = 0 );
2360 
2369  void SetDynamicCursor( const Bitmap& bmp, const Point& p )
2370  {
2371  SetDynamicCursor( bmp, p.x, p.y );
2372  }
2373 
2379  {
2380  SetDynamicCursor( Bitmap::Null() );
2381  }
2382 
2388 
2396 
2426  double DisplayPixelRatio() const;
2427 
2434  void ViewportToImage( int& x, int& y ) const;
2435 
2440  void ViewportToImage( double& x, double& y ) const;
2441 
2447  template <typename T>
2449  {
2450  DPoint p1 = p;
2451  ViewportToImage( p1.x, p1.y );
2452  return p1;
2453  }
2454 
2460  template <typename T>
2462  {
2463  DRect r1 = r;
2464  ViewportToImage( r1.x0, r1.y0 );
2465  ViewportToImage( r1.x1, r1.y1 );
2466  return r1;
2467  }
2468 
2480  void ViewportToImage( Point* p, size_type n ) const;
2481 
2491  void ViewportToImage( DPoint* p, size_type n ) const;
2492 
2500  template <typename T>
2502  {
2503  ViewportToImage( a.Begin(), a.Length() );
2504  }
2505 
2519  void ViewportScalarToImage( int* d, size_type n ) const;
2520 
2531  void ViewportScalarToImage( double* d, size_type n ) const;
2532 
2538  double ViewportScalarToImage( double d ) const;
2539 
2545  template <typename T>
2546  double ViewportScalarToImage( T d ) const
2547  {
2548  return ViewportScalarToImage( double( d ) );
2549  }
2550 
2557  void ImageToViewport( int& x, int& y ) const;
2558 
2563  void ImageToViewport( double& x, double& y ) const;
2564 
2574  template <typename T>
2576  {
2577  GenericPoint<T> p1 = p;
2578  ImageToViewport( p1.x, p1.y );
2579  return p1;
2580  }
2581 
2591  template <typename T>
2593  {
2594  GenericRectangle<T> r1 = r;
2595  ImageToViewport( r1.x0, r1.y0 );
2596  ImageToViewport( r1.x1, r1.y1 );
2597  return r1;
2598  }
2599 
2611  void ImageToViewport( Point* p, size_type n ) const;
2612 
2622  void ImageToViewport( DPoint* p, size_type n ) const;
2623 
2631  template <typename T>
2633  {
2634  ImageToViewport( a.Begin(), a.Length() );
2635  }
2636 
2650  void ImageScalarToViewport( int* d, size_type n ) const;
2651 
2662  void ImageScalarToViewport( double* d, size_type n ) const;
2663 
2672  int ImageScalarToViewport( int ) const;
2673 
2679  double ImageScalarToViewport( double ) const;
2680 
2687  void ViewportToGlobal( int& x, int& y ) const;
2688 
2693  Point ViewportToGlobal( const Point& p ) const
2694  {
2695  Point p1 = p;
2696  ViewportToGlobal( p1.x, p1.y );
2697  return p1;
2698  }
2699 
2705  Rect ViewportToGlobal( const Rect& r ) const
2706  {
2707  Rect r1 = r;
2708  ViewportToGlobal( r1.x0, r1.y0 );
2709  ViewportToGlobal( r1.x1, r1.y1 );
2710  return r1;
2711  }
2712 
2719  void GlobalToViewport( int& x, int& y ) const;
2720 
2726  Point GlobalToViewport( const Point& p ) const
2727  {
2728  Point p1 = p;
2729  GlobalToViewport( p1.x, p1.y );
2730  return p1;
2731  }
2732 
2738  Rect GlobalToViewport( const Rect& r ) const
2739  {
2740  Rect r1 = r;
2741  GlobalToViewport( r1.x0, r1.y0 );
2742  GlobalToViewport( r1.x1, r1.y1 );
2743  return r1;
2744  }
2745 
2754  void Reset()
2755  {
2756  SetZoomFactor( ZoomFactor() );
2757  }
2758 
2764  void Regenerate();
2765 
2774  void RegenerateViewportRect( const Rect& r )
2775  {
2776  RegenerateViewportRect( r.x0, r.y0, r.x1, r.y1 );
2777  }
2778 
2793  void RegenerateViewportRect( int x0, int y0, int x1, int y1 );
2794 
2804  {
2805  RegenerateImageRect( r.x0, r.y0, r.x1, r.y1 );
2806  }
2807 
2822  void RegenerateImageRect( double x0, double y0, double x1, double y1 );
2823 
2829 
2838  void UpdateViewportRect( const Rect& r )
2839  {
2840  UpdateViewportRect( r.x0, r.y0, r.x1, r.y1 );
2841  }
2842 
2857  void UpdateViewportRect( int x0, int y0, int x1, int y1 );
2858 
2867  void UpdateImageRect( const pcl::DRect& r )
2868  {
2869  UpdateImageRect( r.x0, r.y0, r.x1, r.y1 );
2870  }
2871 
2887  void UpdateImageRect( double x0, double y0, double x1, double y1 );
2888 
2892  bool HasPendingUpdates() const;
2893 
2913 
2919 
2928  Bitmap ViewportBitmap( const Rect& r, uint32 flags = 0 ) const
2929  {
2930  return ViewportBitmap( r.x0, r.y0, r.x1, r.y1, flags );
2931  }
2932 
2952  Bitmap ViewportBitmap( int x0, int y0, int x1, int y1, uint32 flags = 0 ) const;
2953 
2962  void BeginSelection( const Point& p, uint32 flags = 0 )
2963  {
2964  BeginSelection( p.x, p.y, flags );
2965  }
2966 
2983  void BeginSelection( int x, int y, uint32 flags = 0 );
2984 
2993  void ModifySelection( const Point& p, uint32 flags = 0 )
2994  {
2995  ModifySelection( p.x, p.y, flags );
2996  }
2997 
3011  void ModifySelection( int x, int y, uint32 flags = 0 );
3012 
3017 
3022 
3027 
3037  Rect SelectionRect( uint32* flags = nullptr ) const;
3038 
3043  bool IsSelection() const;
3044 
3050  static ImageWindow WindowById( const IsoString& id );
3051 
3052  static ImageWindow WindowById( const IsoString::ustring_base& id )
3053  {
3054  return WindowById( IsoString( id ) );
3055  }
3056 
3062  static ImageWindow WindowByFilePath( const String& filePath );
3063 
3075 
3083  static Array<ImageWindow> AllWindows( bool includeIconicWindows = true );
3084 
3085 private:
3086 
3087  ImageWindow( void* h ) : UIObject( h )
3088  {
3089  }
3090 
3091  friend class View;
3092  friend class ProcessInstance; // for IsMaskable()
3093  friend class ProcessContextDispatcher;
3094  friend class InternalWindowEnumerator;
3095 };
3096 
3097 // ----------------------------------------------------------------------------
3098 
3099 #endif // !__PCL_BUILDING_PIXINSIGHT_APPLICATION
3100 
3101 } // pcl
3102 
3103 #endif // __PCL_ImageWindow_h
3104 
3105 // ----------------------------------------------------------------------------
3106 // EOF pcl/ImageWindow.h - Released 2025-02-21T12:13:32Z
Generic dynamic array.
Definition: Array.h:100
bool IsEmpty() const noexcept
Definition: Array.h:324
Client-side interface to a PixInsight Bitmap object.
Definition: Bitmap.h:204
static Bitmap & Null()
A generic point in the two-dimensional space.
Definition: Point.h:100
component x
Abscissa (horizontal, or X-axis coordinate).
Definition: Point.h:111
component y
Ordinate (vertical, or Y-axis coordinate).
Definition: Point.h:112
A generic rectangle in the two-dimensional space.
Definition: Rectangle.h:316
component x1
Horizontal coordinate of the lower right corner.
Definition: Rectangle.h:336
component y1
Vertical coordinate of the lower right corner.
Definition: Rectangle.h:337
component y0
Vertical coordinate of the upper left corner.
Definition: Rectangle.h:335
component x0
Horizontal coordinate of the upper left corner.
Definition: Rectangle.h:334
A high-level interface to ICC color profiles.
Definition: ICCProfile.h:235
Format-independent, fundamental image stream options.
Definition: ImageOptions.h:214
High-level interface to an image window object in the PixInsight core application.
Definition: ImageWindow.h:287
void SetResolution(double xRes, double yRes, bool metric=false)
void BeginSelection(int x, int y, uint32 flags=0)
View CreatePreview(int x0, int y0, int x1, int y1, const IsoString &previewId=IsoString())
void SetICCProfile(const ICCProfile &icc)
void EnableColorManagement(bool=true)
void SetRGBWS(const RGBColorSystem &rgbws)
GenericRectangle< T > ImageToViewport(const GenericRectangle< T > &r) const
Definition: ImageWindow.h:2592
ImageOptions FileInfo() const
void RegenerateImageRect(double x0, double y0, double x1, double y1)
int ZoomFactor() const
bool IsModified() const
Definition: ImageWindow.h:647
ImageWindow()=default
void CancelSelection()
static ImageWindow ActiveWindow()
bool HasPendingUpdates() const
GenericPoint< T > ImageToViewport(const GenericPoint< T > &p) const
Definition: ImageWindow.h:2575
bool IsACopy() const
void CommitPendingUpdates()
ImageWindow(ImageWindow &&x)
Definition: ImageWindow.h:416
void ViewportToGlobal(int &x, int &y) const
static bool IsDefaultThumbnailEmbeddingEnabled()
display_channel CurrentChannel() const
void SetDynamicCursor(const char **xpm, const Point &p)
Definition: ImageWindow.h:2332
bool GetKeywords(FITSKeywordArray &keywords) const
Definition: ImageWindow.h:1339
static bool SetSwapDirectories(const StringList &directories)
int CurrentAlphaChannel() const
Definition: ImageWindow.h:1803
ImageWindow(const ImageWindow &w)
Definition: ImageWindow.h:408
DPoint ViewportToImage(const GenericPoint< T > &p) const
Definition: ImageWindow.h:2448
void ModifySelection(int x, int y, uint32 flags=0)
void ZoomToFit(bool optimalFit=true, bool allowMagnification=true, bool allowAnimations=true, bool noLimits=false)
void RegenerateViewportRect(const Rect &r)
Definition: ImageWindow.h:2774
void HideMask(bool hide=true)
Definition: ImageWindow.h:1047
void SelectChannel(display_channel c)
void SetMaskMode(mask_mode mode)
ImageWindow(int width, int height, int numberOfChannels=1, int bitsPerSample=32, bool floatSample=true, bool color=false, bool initialProcessing=true, const IsoString &id=IsoString())
bool HasMaskReferences() const
bool GetICCProfile(ICCProfile &icc) const
void ViewportToImage(Point *p, size_type n) const
Bitmap DynamicCursorBitmap() const
bool IsMaskCompatible(const ImageWindow &)
bool IsIconic() const
void BeginSelection(const Point &p, uint32 flags=0)
Definition: ImageWindow.h:2962
Rect GlobalToViewport(const Rect &r) const
Definition: ImageWindow.h:2738
bool IsSelection() const
View CurrentView() const
void DisableProofing(bool disable=true)
Definition: ImageWindow.h:1217
void DeleteICCProfile()
void UpdateViewportRect(int x0, int y0, int x1, int y1)
void GetViewportSize(int &width, int &height) const
Point DynamicCursorHotSpot() const
void SetResolution(double r, bool metric=false)
Definition: ImageWindow.h:1621
void SetDynamicCursor(const char **xpm, int hx=0, int hy=0)
void SelectPreview(const IsoString &previewId)
Definition: ImageWindow.h:799
View CreatePreview(const Rect &r, const IsoString &previewId=IsoString())
Definition: ImageWindow.h:817
void SetImageType(image_type type, bool notify=true)
static ImageWindow & Null()
View PreviewById(const IsoString &previewId) const
int ImageScalarToViewport(int) const
void ViewportScalarToImage(int *d, size_type n) const
int VisibleViewportHeight() const
Definition: ImageWindow.h:2187
static ImageWindow WindowById(const IsoString &id)
void HideTransparency()
Definition: ImageWindow.h:1940
int ViewportHeight() const
Definition: ImageWindow.h:2123
Point GlobalToViewport(const Point &p) const
Definition: ImageWindow.h:2726
void Show(bool fitWindow=true)
void RegenerateViewportRect(int x0, int y0, int x1, int y1)
void RemoveMaskReferences()
Rect VisibleViewportRect() const
void UpdateSelection()
void DeletePreview(const IsoString &previewId)
Array< View > Previews() const
bool IsMaskInverted() const
void SetICCProfile(const String &filePath)
void ViewportToImage(Array< GenericPoint< T > > &a) const
Definition: ImageWindow.h:2501
bool PreviewExists(const IsoString &previewId) const
Definition: ImageWindow.h:764
static void SetBackgroundBrush(background_brush brush, uint32 fgColor=0, uint32 bgColor=0)
bool IsAlphaChannelDisplayed() const
Definition: ImageWindow.h:1789
void EnableProofing(bool=true)
~ImageWindow() override
Definition: ImageWindow.h:428
void EnableGamutCheck(bool=true)
void InvertMask(bool invert=true)
Definition: ImageWindow.h:1010
static bool IsDefaultICCProfileEmbeddingEnabledForRGBImages()
void ModifySelection(const Point &p, uint32 flags=0)
Definition: ImageWindow.h:2993
bool IsMaskVisible() const
Rect ViewportToGlobal(const Rect &r) const
Definition: ImageWindow.h:2705
bool HasPreviews() const
Definition: ImageWindow.h:733
bool IsVisible() const
void SetDynamicCursor(const Bitmap &bmp, int hx=0, int hy=0)
Point ViewportToGlobal(const Point &p) const
Definition: ImageWindow.h:2693
ImageWindow Mask() const
double ViewportScalarToImage(T d) const
Definition: ImageWindow.h:2546
void GetResolution(double &xRes, double &yRes, bool &metric) const
DRect ViewportToImage(const GenericRectangle< T > &r) const
Definition: ImageWindow.h:2461
static StringList SwapDirectories()
static void GetDefaultResolution(double &xRes, double &yRes, bool &metric)
Rect PreviewRect(const IsoString &previewId) const
bool IsTransparencyVisible() const
Definition: ImageWindow.h:1914
double ImageScalarToViewport(double) const
void ModifyPreview(const IsoString &previewId, int x0, int y0, int x1, int y1, const IsoString &newId=IsoString())
void ResetDynamicCursor()
Definition: ImageWindow.h:2378
View MainView() const
void GetSampleFormat(int &bitsPerSample, bool &floatSample) const
void PurgeProperties()
static gui_mode CurrentMode()
static bool IsDynamicSessionActive()
String FilePath() const
static ImageWindow WindowByFilePath(const String &filePath)
void DisableGamutCheck(bool disable=true)
Definition: ImageWindow.h:1254
void ImageToViewport(DPoint *p, size_type n) const
void UpdateImageRect(double x0, double y0, double x1, double y1)
void EnableMask(bool=true)
Rect SelectionRect(uint32 *flags=nullptr) const
void ShowMask(bool=true)
static bool IsDefaultICCProfileEmbeddingEnabledForGrayscaleImages()
static Array< ImageWindow > AllWindows(bool includeIconicWindows=true)
static bool IsDefaultPropertiesEmbeddingEnabled()
void ViewportToImage(DPoint *p, size_type n) const
void ViewportScalarToImage(double *d, size_type n) const
void SetViewportPosition(const Point &p)
Definition: ImageWindow.h:2160
static ProcessInterface * ActiveDynamicInterface()
int NumberOfPreviews() const
Rect ViewportUpdateRect() const
int ViewportWidth() const
Definition: ImageWindow.h:2113
Bitmap ViewportBitmap(int x0, int y0, int x1, int y1, uint32 flags=0) const
void UpdateImageRect(const pcl::DRect &r)
Definition: ImageWindow.h:2867
void SetSampleFormat(int bitsPerSample, bool floatSample)
bool IsProofingEnabled() const
void SetTransparencyMode(transparency_mode mode, RGBA color=0)
void ImageToViewport(Array< GenericPoint< T > > &a) const
Definition: ImageWindow.h:2632
mask_mode MaskMode() const
static void SelectMode(gui_mode mode)
void UpdateViewportRect(const Rect &r)
Definition: ImageWindow.h:2838
static void GetGlobalRGBWS(RGBColorSystem &rgbws)
void ViewportToImage(double &x, double &y) const
bool IsGamutCheckEnabled() const
double DisplayPixelRatio() const
static background_brush GetBackgroundBrush(uint32 &fgColor, uint32 &bgColor)
image_type ImageType() const
int VisibleViewportWidth() const
Definition: ImageWindow.h:2178
void ImageToViewport(Point *p, size_type n) const
size_type ModifyCount() const
void ModifyPreview(const IsoString &previewId, const Rect &r, const IsoString &newId=IsoString())
Definition: ImageWindow.h:861
void SetMask(ImageWindow &w, bool inverted=false)
void SelectPreview(View &)
static bool TerminateDynamicSession(bool closeInterface=true)
void DisableMask(bool disable=true)
Definition: ImageWindow.h:1029
void UpdateMaskReferences()
void GlobalToViewport(int &x, int &y) const
void RegenerateImageRect(const pcl::DRect &r)
Definition: ImageWindow.h:2803
void SetViewport(double cx, double cy, int zoom=0)
bool IsValidView(const View &) const
static int CursorTolerance()
bool IsMaskEnabled() const
void ImageToViewport(int &x, int &y) const
bool UsingGlobalRGBWS() const
double ViewportScalarToImage(double d) const
void DisableColorManagement(bool disable=true)
Definition: ImageWindow.h:1182
RGBA TransparencyColor() const
Point ViewportPosition() const
void SetColorManagementFeatures(bool cmEnabled, bool proofing, bool gamutCheck)
void SetDynamicCursor(const Bitmap &bmp, const Point &p)
Definition: ImageWindow.h:2369
bool IsColorManagementEnabled() const
bool IsNew() const
static Array< ImageWindow > Open(const String &url, const IsoString &id=IsoString(), const IsoString &formatHints=IsoString(), bool asCopy=false, bool allowMessages=true)
FITSKeywordArray Keywords() const
static void SetGlobalRGBWS(const RGBColorSystem &rgbws)
void SelectView(View &)
void ImageScalarToViewport(double *d, size_type n) const
void GetRGBWS(RGBColorSystem &rgbws) const
void ImageToViewport(double &x, double &y) const
void SetViewport(const DPoint &center, int zoom=0)
Definition: ImageWindow.h:2002
transparency_mode TransparencyMode() const
Bitmap ViewportBitmap(const Rect &r, uint32 flags=0) const
Definition: ImageWindow.h:2928
void ViewportToImage(int &x, int &y) const
bool HasURL() const
Definition: ImageWindow.h:598
void SetViewportPosition(int x, int y)
View SelectedPreview() const
void SetZoomFactor(int z)
void SelectMainView()
Definition: ImageWindow.h:708
void ImageScalarToViewport(int *d, size_type n) const
void SetKeywords(const FITSKeywordArray &keywords)
String FileURL() const
Eight-bit string (ISO/IEC-8859-1 or UTF-8 string)
Definition: String.h:5445
GenericString< char16_type, CharTraits, PCL_STRING_ALLOCATOR > ustring_base
Definition: String.h:5523
High-level interface to a process instance.
Client-side interface to a PixInsight process interface window.
Colorimetrically defined RGB working color space.
32-bit integer rectangle on the plane.
Unicode (UTF-16) string.
Definition: String.h:8148
Root base class for all user interface objects.
Definition: UIObject.h:95
A collection of history data item specifiers.
High-level interface to a PixInsight view object.
Definition: View.h:213
bool CelestialToImage(DPoint &pI, const DPoint &pRD) const
Definition: ImageWindow.h:1561
bool CelestialToImage(double &ra, double &dec) const
bool ImageToCelestial(DPoint &pRD, const GenericPoint< T > &pI, bool rawRA=false) const
Definition: ImageWindow.h:1513
bool CopyAstrometricSolution(const ImageWindow &source, bool notify=true)
void UpdateAstrometryMetadata(bool notify=true)
bool HasAstrometricSolution() const
void ClearAstrometricSolution(bool notify=true)
bool ImageToCelestial(double &x, double &y, bool rawRA=false) const
bool RegenerateAstrometricSolution(bool allowGUIMessages=true, bool notify=true)
unsigned int uint32
Definition: Defs.h:666
uint32 RGBA
Definition: Color.h:92
size_t size_type
Definition: Defs.h:609
bool IsValidMainViewMode(value_type m)
Definition: ImageWindow.h:135
bool IsValidPreviewMode(value_type m)
Definition: ImageWindow.h:126
PCL root namespace.
Definition: AbstractImage.h:77