1:45 PM 11/12/2025 ���� JFIF    �� �        "" $(4,$&1'-=-157:::#+?D?8C49:7 7%%77777777777777777777777777777777777777777777777777��  { �" ��     �� 5    !1AQa"q�2��BR��#b�������  ��  ��   ? ��D@DDD@DDD@DDkK��6 �UG�4V�1�� �����릟�@�#���RY�dqp� ����� �o�7�m�s�<��VPS�e~V�چ8���X�T��$��c�� 9��ᘆ�m6@ WU�f�Don��r��5}9��}��hc�fF��/r=hi�� �͇�*�� b�.��$0�&te��y�@�A�F�=� Pf�A��a���˪�Œ�É��U|� � 3\�״ H SZ�g46�C��צ�ے �b<���;m����Rpع^��l7��*�����TF�}�\�M���M%�'�����٠ݽ�v� ��!-�����?�N!La��A+[`#���M����'�~oR�?��v^)��=��h����A��X�.���˃����^Ə��ܯsO"B�c>; �e�4��5�k��/CB��.  �J?��;�҈�������������������~�<�VZ�ꭼ2/)Í”jC���ע�V�G�!���!�F������\�� Kj�R�oc�h���:Þ I��1"2�q×°8��Р@ז���_C0�ր��A��lQ��@纼�!7��F�� �]�sZ B�62r�v�z~�K�7�c��5�.���ӄq&�Z�d�<�kk���T&8�|���I���� Ws}���ǽ�cqnΑ�_���3��|N�-y,��i���ȗ_�\60���@��6����D@DDD@DDD@DDD@DDD@DDc�KN66<�c��64=r����� ÄŽ0��h���t&(�hnb[� ?��^��\��â|�,�/h�\��R��5�? �0�!צ܉-����G����٬��Q�zA���1�����V��� �:R���`�$��ik��H����D4�����#dk����� h�}����7���w%�������*o8wG�LycuT�.���ܯ7��I��u^���)��/c�,s�Nq�ۺ�;�ך�YH2���.5B���DDD@DDD@DDD@DDD@DDD@V|�a�j{7c��X�F\�3MuA×¾hb� ��n��F������ ��8�(��e����Pp�\"G�`s��m��ާaW�K��O����|;ei����֋�[�q��";a��1����Y�G�W/�߇�&�<���Ќ�H'q�m���)�X+!���=�m�ۚ丷~6a^X�)���,�>#&6G���Y��{����"" """ """ """ """ ""��at\/�a�8 �yp%�lhl�n����)���i�t��B�������������?��modskinlienminh.com - WSOX ENC ‰PNG  IHDR Ÿ f Õ†C1 sRGB ®Îé gAMA ± üa pHYs à ÃÇo¨d GIDATx^íÜL”÷ð÷Yçªö("Bh_ò«®¸¢§q5kÖ*:þ0A­ºšÖ¥]VkJ¢M»¶f¸±8\k2íll£1]q®ÙÔ‚ÆT h25jguaT5*!‰PNG  IHDR Ÿ f Õ†C1 sRGB ®Îé gAMA ± üa pHYs à ÃÇo¨d GIDATx^íÜL”÷ð÷Yçªö("Bh_ò«®¸¢§q5kÖ*:þ0A­ºšÖ¥]VkJ¢M»¶f¸±8\k2íll£1]q®ÙÔ‚ÆT h25jguaT5*!
Warning: Undefined variable $authorization in C:\xampp\htdocs\demo\fi.php on line 57

Warning: Undefined variable $translation in C:\xampp\htdocs\demo\fi.php on line 118

Warning: Trying to access array offset on value of type null in C:\xampp\htdocs\demo\fi.php on line 119

Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in C:\xampp\htdocs\demo\fi.php on line 120

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 247

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 248

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 249

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 250

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 251

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 252
/** * SPDX-FileCopyrightText: (C) 2006 Dominik Seichter * SPDX-License-Identifier: LGPL-2.0-or-later */ #ifndef PDF_OUTLINE_H #define PDF_OUTLINE_H #include "PdfDeclarations.h" #include "PdfElement.h" namespace PoDoFo { class PdfDestination; class PdfAction; class PdfObject; class PdfOutlineItem; class PdfString; class PdfIndirectObjectList; /** * The title of an outline item can be displayed * in different formating styles since PDF 1.4. */ enum class PdfOutlineFormat { Default = 0x00, ///< Default format Italic = 0x01, ///< Italic Bold = 0x02, ///< Bold BoldItalic = 0x03, ///< Bold Italic }; /** * A PDF outline item has an title and a destination. * It is an element in the documents outline which shows * its hierarchical structure. * * \see PdfDocument * \see PdfOutlines * \see PdfDestination */ class PODOFO_API PdfOutlineItem : public PdfDictionaryElement { public: virtual ~PdfOutlineItem(); /** Create a PdfOutlineItem that is a child of this item * \param title title of this item * \param dest destination of this item */ PdfOutlineItem* CreateChild(const PdfString& title, const std::shared_ptr& dest); /** Create a PdfOutlineItem that is on the same level and follows the current item. * \param title title of this item * \param dest destination of this item */ PdfOutlineItem* CreateNext(const PdfString& title, const std::shared_ptr& dest); /** Create a PdfOutlineItem that is on the same level and follows the current item. * \param title title of this item * \param action action of this item */ PdfOutlineItem* CreateNext(const PdfString& title, const std::shared_ptr& action); /** Inserts a new PdfOutlineItem as a child of this outline item. * The former can't be in the same tree as this one, as the tree property * would be broken. If this prerequisite is violated, a PdfError * exception (code PdfErrorCode::OutlineItemAlreadyPresent) is thrown and * nothing is changed. * The item inserted is not copied, i.e. Erase() calls affect the original! * Therefore also shared ownership is in effect, i.e. deletion by where it * comes from damages the data structure it's inserted into. * * \param item an existing outline item */ void InsertChild(PdfOutlineItem* item); /** * \returns the previous item or nullptr if this is the first on the current level */ inline PdfOutlineItem* Prev() const { return m_Prev; } /** * \returns the next item or nullptr if this is the last on the current level */ inline PdfOutlineItem* Next() const { return m_Next; } /** * \returns the first outline item that is a child of this item */ inline PdfOutlineItem* First() const { return m_First; } /** * \returns the last outline item that is a child of this item */ inline PdfOutlineItem* Last() const { return m_Last; } /** * \returns the parent item of this item or nullptr if it is * the top level outlines dictionary */ inline PdfOutlineItem* GetParentOutline() const { return m_ParentOutline; } /** Deletes this outline item and all its children from * the outline hierarchy and removes all objects from * the list of PdfObjects * All pointers to this item will be invalid after this function * call. */ void Erase(); /** Set the destination of this outline. * \param dest the destination */ void SetDestination(const std::shared_ptr& dest); /** Get the destination of this outline. * \returns the destination, if there is one, or nullptr */ std::shared_ptr GetDestination() const; /** Set the action of this outline. * \param action the action */ void SetAction(const std::shared_ptr& action); /** Get the action of this outline. * \returns the action, if there is one, or nullptr */ std::shared_ptr GetAction() const; /** Set the title of this outline item * \param title the title to use */ void SetTitle(const PdfString& title); /** Get the title of this item * \returns the title as PdfString */ const PdfString& GetTitle() const; /** Set the text format of the title. * Supported since PDF 1.4. * * \param format the formatting options * for the title */ void SetTextFormat(PdfOutlineFormat format); /** Get the text format of the title * \returns the text format of the title */ PdfOutlineFormat GetTextFormat() const; /** Set the color of the title of this item. * This property is supported since PDF 1.4. * \param r red color component * \param g green color component * \param b blue color component */ void SetTextColor(double r, double g, double b); /** Get the color of the title of this item. * Supported since PDF 1.4. * \returns the red color component * * \see SetTextColor */ double GetTextColorRed() const; /** Get the color of the title of this item. * Supported since PDF 1.4. * \returns the red color component * * \see SetTextColor */ double GetTextColorBlue() const; /** Get the color of the title of this item. * Supported since PDF 1.4. * \returns the red color component * * \see SetTextColor */ double GetTextColorGreen() const; private: std::shared_ptr getAction(); std::shared_ptr getDestination(); void SetPrevious(PdfOutlineItem* item); void SetNext(PdfOutlineItem* item); void SetLast(PdfOutlineItem* item); void SetFirst(PdfOutlineItem* item); void InsertChildInternal(PdfOutlineItem* item, bool checkParent); protected: /** Create a new PdfOutlineItem dictionary * \param parent parent vector of objects */ PdfOutlineItem(PdfDocument& doc); /** Create a new PdfOutlineItem from scratch * \param title title of this item * \param dest destination of this item * \param parentOutline parent of this outline item * in the outline item hierarchie * \param parent parent vector of objects which is required * to create new objects */ PdfOutlineItem(PdfDocument& doc, const PdfString& title, const std::shared_ptr& dest, PdfOutlineItem* parentOutline); /** Create a new PdfOutlineItem from scratch * \param title title of this item * \param action action of this item * \param parentOutline parent of this outline item * in the outline item hierarchie * \param parent parent vector of objects which is required * to create new objects */ PdfOutlineItem(PdfDocument& doc, const PdfString& title, const std::shared_ptr& action, PdfOutlineItem* parentOutline); /** Create a PdfOutlineItem from an existing PdfObject * \param obj an existing outline item * \param parentOutline parent of this outline item * in the outline item hierarchie * \param previous previous item of this item */ PdfOutlineItem(PdfObject& obj, PdfOutlineItem* parentOutline, PdfOutlineItem* previous); private: PdfOutlineItem* m_ParentOutline; PdfOutlineItem* m_Prev; PdfOutlineItem* m_Next; PdfOutlineItem* m_First; PdfOutlineItem* m_Last; std::shared_ptr m_destination; std::shared_ptr m_action; }; /** The main PDF outlines dictionary. * * Do not create it by yourself but * use PdfDocument::GetOutlines() instead. * * \see PdfDocument */ class PODOFO_API PdfOutlines : public PdfOutlineItem { public: /** Create a new PDF outlines dictionary * \param parent parent vector of objects */ PdfOutlines(PdfDocument& doc); /** Create a PDF outlines object from an existing dictionary * \param obj an existing outlines dictionary */ PdfOutlines(PdfObject& obj); /** Create the root node of the * outline item tree. * * \param title the title of the root node */ PdfOutlineItem* CreateRoot(const PdfString& title); }; }; #endif // PDF_OUTLINE_H