Jump to content

Recommended Posts

Posted (edited)

image.thumb.png.4993f44caefb1bdbf2ee08ca9cab3b36.png

To test as intended: see read me! file in zip

This program is still under development, but feel free to make this code better with suggestions and better code :)
There is an open ticket for a bug in _GUICtrlRichEdit_StreamToFile so the script uses a workaround:

https://www.autoitscript.com/trac/autoit/ticket/4038#ticket

Wanna take a look at the code? Here you go:

#cs

    function:   minimalistic program that edits custom rtf files
    version:    4
    made by:    TheAutomator
    project:    https://www.autoitscript.com/forum/topic/212763-minimark-a-minimalistic-rtf-editor

    todo:

        • make find and replace work better
        • custom scrollbar control is buggy
        • make user level install possible (requested by argumentum)
        • allow dropping files to gui
        • add shortcut to incert and change checkmarks
        • add upper/lower case function
        • add incert dcurrent time and date function
        • consider sort lines, remove duplicate lines, remove whitespace button
        • add file changed indicator
        • add option to silence sounds
        • add right click menu on edit
        • consider bigger gui
        • check if programfiles exist when opened

    wanna help debugging the AutoIT rich edit?

        https://www.autoitscript.com/trac/autoit/ticket/4038#ticket

    remarks:

        to test MiniMark without compilation:

            • copy "MiniMark.au3" in the "MiniMark" folder and run it (title font will be the default one if you don't install the font)

        to install and test MiniMark as intended:

            • compile minimark to exe (with options, the exe will apear in the "MiniMark" folder)
            • compile setup to exe (with options)
            • use the setup to install MiniMark
            • restart computer (if things don't update directly)
            • rightclick to create a new mnm file
            • double click it and tadaaaah!

    hystory:

        version 1

            + added some changes inspired by Werty
            + code revised
            + added functionality like opening files with a window, noticed by Argumentum
            + added sounds

        version 2

            + scrolling is now possible thanks to Pixelsearch
            + scroll code was revised by Nine
            + changed some code to prevent a sound to be played twice
            + added "return $gui_rundefmsg" to "func wm_command"

        version 3

            + made an installer/uninstaller (needs install path choice)
            + removed unnecessary guictrlcreatedummy code
            + undo buffer is set to empty when file loaded
            + added search function with custom gui (work in progress)
            + added scroll bar (that is buggy AF)

#ce

#Region au3

    #autoit3wrapper_icon=setup\icon.ico
    #autoit3wrapper_outfile_x64=MiniMark\MiniMark.exe
    #autoit3wrapper_usex64=y

    #NoTrayIcon

    #include <guirichedit.au3>
    #include <guiconstants.au3>
    #include <winapisyswin.au3>

#EndRegion au3
#Region MiniMark constants

    ; colors

    Const $color_text_white = 0x00ffffff
    Const $color_text_gray = 0x00c0c0c0
    Const $color_element_gray = 0x606060
    Const $color_control_gray = 0x404040
    Const $color_border_gray = 0x202020
    Const $color_text_red = 0x006600ff
    Const $color_text_green = 0x0000ff66
    Const $color_text_blue = 0x00ff6600
    Const $color_transparent_background = 0xff00ff

    ; font names

    Const $font_handel_gothic_bt = 'handelgothic bt'
    Const $font_lucida_console = 'lucida console'

    ; sound effects

    Const $sound_start = @ScriptDir & '\sounds\start.wav'
    Const $sound_click = @ScriptDir & '\sounds\click.wav'
    Const $sound_alert = @ScriptDir & '\sounds\alert.wav'
    Const $sound_stop = @ScriptDir & '\sounds\stop.wav'

    ; user interface images

    Const $image_alert = @ScriptDir & '\images\alert.bmp'
    Const $image_button = @ScriptDir & '\images\button.bmp'
    Const $image_MiniMark = @ScriptDir & '\images\MiniMark.bmp'
    Const $image_scroll = @ScriptDir & '\images\scroll.bmp'
    Const $image_scroll_down = @ScriptDir & '\images\scroll_down.bmp'
    Const $image_scroll_up = @ScriptDir & '\images\scroll_up.bmp'
    Const $image_search = @ScriptDir & '\images\search.bmp'
    Const $image_settings = @ScriptDir & '\images\settings.bmp'
    Const $image_size_down = @ScriptDir & '\images\size_down.bmp'
    Const $image_size_up = @ScriptDir & '\images\size_up.bmp'
    Const $image_tick_on = @ScriptDir & '\images\tick_on.bmp'
    Const $image_tick_off = @ScriptDir & '\images\tick_off.bmp'

    ; files

    Const $file_intro = @ScriptDir & '\data\MiniMark.mnm'
    Const $file_settings = @ScriptDir & '\data\settings.ini'

#EndRegion MiniMark constants
#Region custom gui create functions

    ; create titles.

    Func title_create($title, $w)
        Local $title_handle = GUICtrlCreateLabel($title, 5, 5, $w, 20, BitOR($ss_centerimage, $ss_center), $gui_ws_ex_parentdrag)         ; use label to drag form
        GUICtrlSetFont(Default, 12, 400, 0, $font_handel_gothic_bt)
        GUICtrlSetColor(Default, $color_text_gray)
        GUICtrlSetBkColor(Default, $gui_bkcolor_transparent)
        Return $title_handle
    EndFunc   ;==>title_create

    ; create buttons.

    Func button_create($text, $tip, $sub, $x, $y)
        Local $button_handle = GUICtrlCreatePic($image_button, $x, $y, 70, 20)
        GUICtrlSetTip(Default, $tip, $sub)
        Local $button_label = GUICtrlCreateLabel($text, $x, $y, 70, 20, BitOR($ss_centerimage, $ss_center))
        GUICtrlSetFont(Default, 9, 400, 0, $font_handel_gothic_bt)
        GUICtrlSetColor(Default, $color_text_gray)
        GUICtrlSetBkColor(Default, $gui_bkcolor_transparent)
        Return $button_handle
    EndFunc   ;==>button_create

    ; create checkboxes.

    Func checkbox_create($text, $tip, $sub, $x, $y, $state = 0)
        Local $checkbox_handle = GUICtrlCreatePic($state ? $image_tick_on : $image_tick_off, $x, $y, 70, 20)
        GUICtrlSetTip(Default, $tip, $sub)
        Local $checkbox_label = GUICtrlCreateLabel($text, $x, $y, 50, 20, BitOR($ss_centerimage, $ss_center))
        GUICtrlSetFont(Default, 9, 400, 0, $font_handel_gothic_bt)
        GUICtrlSetColor(Default, $color_text_gray)
        GUICtrlSetBkColor(Default, $gui_bkcolor_transparent)
        Return $checkbox_handle
    EndFunc   ;==>checkbox_create

    ; create inputs (+5 on the left, -5 on the right; so we don't overlap the corners).

    Func input_create($x, $y, $tip)
        Local $input_handle = GUICtrlCreateInput('', $x, $y, 210, 20, $es_autohscroll, 0)
        GUICtrlSetTip(Default, $tip)
        GUICtrlSetColor(Default, $color_text_gray)
        GUICtrlSetBkColor(Default, $color_control_gray)
        GUICtrlSetFont(Default, 12, 400, 0, $font_handel_gothic_bt)
        Return $input_handle
    EndFunc   ;==>input_create

#EndRegion custom gui create functions
#Region checkbox messages

    Func checkbox_toggle($checkbox_handle, ByRef $checkbox_state)
        play_sound($sound_click)
        $checkbox_state = $checkbox_state ? 0 : 1
        GUICtrlSetImage($checkbox_handle, $checkbox_state ? $image_tick_on : $image_tick_off)
    EndFunc   ;==>checkbox_toggle

#EndRegion checkbox messages
#Region sound effects

    $checkbox_sound_state = Int(IniRead($file_settings, 'settings', 'sound', 1))         ; read from ini

    Func play_sound($name, $wait = 0)
        If $checkbox_sound_state Then SoundPlay($name, $wait)
    EndFunc   ;==>play_sound

#EndRegion sound effects
#Region custom msgbox

    ; alert constants

    Const $alert_ok = 0
    Const $alert_link_close = 1
    Const $alert_yes_no_cancel = 2

    ; a custom messagebox, used for warnings and notifications

    Func alert($title = 'Alert', $text = '', $type = $alert_ok)

        Local $alert_form = GUICreate('Alert', 230, 120, Default, Default, $ws_popup, BitOR($ws_ex_layered, $ws_ex_topmost))
        GUISetBkColor($color_transparent_background)

        Local $alert_background = GUICtrlCreatePic($image_alert, 0, 0, 230, 120)
        GUICtrlSetState(Default, $gui_disable)

        Local $alert_title = title_create($title, 220)

        Local $alert_text = GUICtrlCreateLabel($text, 10, 35, 210, 50, $ss_center)         ;, bitor($ss_centerimage, $ss_center, $bs_multiline))
        GUICtrlSetFont(Default, 8, 400, 0, $font_handel_gothic_bt)
        GUICtrlSetColor(Default, $color_text_gray)
        GUICtrlSetBkColor(Default, $color_control_gray)

        Local $alert_button_1 = -14, $alert_button_2 = -14, $alert_button_3 = -14

        Switch $type

            Case $alert_ok
                $alert_button_2 = button_create('Ok', '', Default, 80, 95)

            Case $alert_link_close
                $alert_button_1 = button_create('Link', 'Go to the AutoIt forum to check for MiniMark updates.', Default, 5, 95)
                $alert_button_3 = button_create('Close', '', Default, 155, 95)

            Case $alert_yes_no_cancel
                $alert_button_1 = button_create('Yes', '', Default, 5, 95)
                $alert_button_2 = button_create('No', '', Default, 80, 95)
                $alert_button_3 = button_create('Cancel', '', Default, 155, 95)

        EndSwitch

        _WinAPI_SetLayeredWindowAttributes($alert_form, $color_transparent_background)         ; set the transparant gui color
        GUISetState(@SW_SHOW)
        play_sound($sound_alert)

        Local $choice         ; to return what button was clicked
        While 1
            Switch GUIGetMsg()
                Case $gui_event_close
                    $choice = 0
                    ExitLoop
                Case $alert_button_1
                    $choice = 1
                    ExitLoop
                Case $alert_button_2
                    $choice = 2
                    ExitLoop
                Case $alert_button_3
                    $choice = 3
                    ExitLoop
            EndSwitch
        WEnd

        play_sound($sound_click)
        GUIDelete($alert_form)
        Return $choice

    EndFunc   ;==>alert

#EndRegion custom msgbox
#Region parameters

    Func get_filename()
        Local $path_split = StringSplit($cmdline[1], '\', 3)
        Return StringTrimRight($path_split[UBound($path_split) - 1], 4)
    EndFunc   ;==>get_filename

    Func wrong_file_extension($path = $cmdline[1])
        Return StringRight($path, 4) <> '.mnm'
    EndFunc   ;==>wrong_file_extension

    Func set_default_file()
        Global $cmdline = [1, $file_intro]         ; overwrite if empty to load default intro file
    EndFunc   ;==>set_default_file

    If $cmdline[0] = 1 Then
        If wrong_file_extension() Then
            alert('Wrong file type!', 'You can only open *.mnm files with this program.', $alert_ok)
            set_default_file()
        EndIf
    Else
        set_default_file()
    EndIf

#EndRegion parameters
#Region MiniMark gui

    $MiniMark_form = GUICreate('MiniMark', 380, 380, Default, Default, $ws_popup, $ws_ex_layered)
    GUISetBkColor($color_transparent_background)

    $MiniMark_background = GUICtrlCreatePic($image_MiniMark, 0, 0, 380, 380)
    GUICtrlSetState(Default, $gui_disable)

    $MiniMark_title = title_create(get_filename(), 370)

    $MiniMark_edit = _GUICtrlRichEdit_Create($MiniMark_form, 'Loading...', 10, 35, 270, 335, BitOR($es_multiline, $es_autovscroll, $es_nohidesel), 0)         ; $es_nohidesel for visible selection when using search function
    _GUICtrlRichEdit_SetBkColor($MiniMark_edit, $color_control_gray)

    $button_settings = button_create('Options', 'Open settings.', Default, 305, 30)
    $button_open = button_create('Open', 'Open a new *.mnm file.', 'ctrl + o', 305, 55)
    $button_bold = button_create('Bold', 'Make selection bold.', 'ctrl + b', 305, 80)
    $button_italic = button_create('Italic', 'Make selection italic.', 'ctrl + i', 305, 105)
    $button_struck = button_create('Struck', 'Make selection struck.', 'ctrl + t', 305, 130)
    $button_underline = button_create('Underline', 'Make selection underlined.', 'ctrl + u', 305, 155)
    $button_red = button_create('Red', 'Make selection red.', 'shift + ctrl + r', 305, 180)
    $button_green = button_create('Green', 'Make selection green.', 'shift + ctrl + g', 305, 205)
    $button_blue = button_create('Blue', 'Make selection blue.', 'shift + ctrl + b', 305, 230)
    $button_white = button_create('White', 'Make selection white.', 'shift + ctrl + w', 305, 255)
    $button_default = button_create('Default', 'Make selection default style and gray.', 'shift + ctrl + d', 305, 280)
    $button_search = button_create('Search', 'Find and replace text.', 'ctrl + f', 305, 305)
    $button_save = button_create('save', 'Save file / save file as.', 'ctrl + s / shift + ctrl + s', 305, 330)
    $save_as = GUICtrlCreateDummy()
    $button_quit = button_create('Quit', 'Quit the program.', 'escape', 305, 355)

    $MiniMark_scroll_up = GUICtrlCreatePic($image_scroll_up, 290, 30, 10, 10)
    $MiniMark_scroll_thumb = GUICtrlCreatePic($image_scroll, 290, 45, 10, 20)         ; scroll background: 290, 45, 10, 315
    $MiniMark_scroll_down = GUICtrlCreatePic($image_scroll_down, 290, 365, 10, 10)

    _WinAPI_SetLayeredWindowAttributes($MiniMark_form, $color_transparent_background)         ;set the transparant gui color

    GUISetState(@SW_SHOW, $MiniMark_form)

    play_sound($sound_start)         ; play MiniMark startup sound.

#EndRegion MiniMark gui
#Region edit messages

    ; we need this becouse the rich edit keeps changing the text to the default style.

    GUIRegisterMsg($wm_command, wm_command)

    Func wm_command($hwnd, $imsg, $wparam, $lparam)
        If $MiniMark_edit <> $lparam Then Return $gui_rundefmsg
        If _GUICtrlRichEdit_IsTextSelected($MiniMark_edit) Then Return $gui_rundefmsg
        If _GUICtrlRichEdit_GetFont($MiniMark_edit)[1] <> $font_lucida_console Then
            _GUICtrlRichEdit_SetFont($MiniMark_edit, 9, $font_lucida_console)
            _GUICtrlRichEdit_SetCharColor($MiniMark_edit, $color_text_gray)
        EndIf
        Return $gui_rundefmsg
    EndFunc   ;==>wm_command

    ; we need this to make the rich edit scrollable with no $ws_vscroll set (we use a custom scrollbar instead).

    _GUICtrlRichEdit_SetEventMask($MiniMark_edit, $enm_scrollevents)
    GUIRegisterMsg($wm_notify, wm_notify)

    Func wm_notify($hwnd, $imsg, $wparam, $lparam)
        Local $tfilter = DllStructCreate($tagmsgfilter, $lparam)
        If $tfilter.hwndfrom = $MiniMark_edit Then _GUICtrlRichEdit_ScrollLines($tfilter.hwndfrom, $tfilter.wparam ? 1 : -1)
        Return $gui_rundefmsg
    EndFunc   ;==>wm_notify

#EndRegion edit messages
#Region markup functions

    ; function that handles text color actions.

    Func colorize($color)         ; if already in selected color -> make default color again
        play_sound($sound_click)
        If _GUICtrlRichEdit_GetCharColor($MiniMark_edit) <> $color Then
            _GUICtrlRichEdit_SetCharColor($MiniMark_edit, $color)
        Else
            _GUICtrlRichEdit_SetCharColor($MiniMark_edit, $color_text_gray)
        EndIf
        If $color = $color_text_gray Then _GUICtrlRichEdit_SetCharAttributes($MiniMark_edit, '-bo-it-un-st')
    EndFunc   ;==>colorize

    ; function that handles text style actions.

    Func stylize($style)         ; if already in selected style -> undo style
        play_sound($sound_click)
        If StringInStr(_GUICtrlRichEdit_GetCharAttributes($MiniMark_edit), $style & '+') Then
            _GUICtrlRichEdit_SetCharAttributes($MiniMark_edit, '-' & $style)
        Else
            _GUICtrlRichEdit_SetCharAttributes($MiniMark_edit, '+' & $style)
        EndIf
    EndFunc   ;==>stylize

#EndRegion markup functions
#Region scroller messages

    ; the scrollbar of hell!
    ; https://www.autoitscript.com/forum/topic/212778-goto-specific-line-in-rich-edit-control

    Const $scroll_x = 290         ; x of $scroll control at all times
    Const $scroll_t = 45, $scroll_m = 295

    Local $scroll_drag = False         ; are we dragging the scroll button?
    Local $scroll_selection         ; remember the current selection before we change it

    Func edit_clicked()
        Local $scroll_cursor = GUIGetCursorInfo($MiniMark_form)         ; get x, y position of cursor
        If $scroll_cursor[0] >= 5 And $scroll_cursor[0] <= 285 And $scroll_cursor[1] >= 30 And $scroll_cursor[1] <= 375 Then

            Local $scroll_y

            Local $scroll_line = _GUICtrlRichEdit_GetLineNumberFromCharPos($MiniMark_edit, _GUICtrlRichEdit_GetSel($MiniMark_edit)[1]) - 1
            Local $scroll_last = _GUICtrlRichEdit_GetLineCount($MiniMark_edit) - 1
            If $scroll_last = 0 Then
                $scroll_y = $scroll_t
            Else
                $scroll_y = $scroll_t + (($scroll_line / $scroll_last) * $scroll_m)
            EndIf

            GUICtrlSetPos($MiniMark_scroll_thumb, $scroll_x, $scroll_y)         ; drag scroll button within range of background bar
        EndIf
    EndFunc   ;==>edit_clicked

    Func thumb_clicked()
        Local $scroll_cursor = GUIGetCursorInfo($MiniMark_form)
        If $scroll_cursor[0] >= 290 And $scroll_cursor[0] <= 300 And $scroll_cursor[1] >= 45 And $scroll_cursor[1] <= 360 Then
            $scroll_drag = True
            $scroll_selection = _GUICtrlRichEdit_GetSel($MiniMark_edit)
        EndIf
    EndFunc   ;==>thumb_clicked

    Func thumb_motion()
        If Not $scroll_drag Then Return
        Local $scroll_x = 290         ; x of $scroll control at all times
        Local $scroll_min_y = 55, $scroll_max_y = 350         ; range of y movement for $scroll (top of frame till bottom - height)

        Local $scroll_cursor = GUIGetCursorInfo($MiniMark_form)[1]         ; get y position of cursor
        If $scroll_cursor < $scroll_min_y Then $scroll_cursor = $scroll_min_y
        If $scroll_cursor > $scroll_max_y Then $scroll_cursor = $scroll_max_y
        GUICtrlSetPos($MiniMark_scroll_thumb, $scroll_x, $scroll_cursor - 10)       ; drag scroll button within range of background bar

        Local $scroll_ratio = ($scroll_cursor - $scroll_min_y) / ($scroll_max_y - $scroll_min_y)         ; calculate scroll position percentage between 0 and 1
        Local $scroll_last = _GUICtrlRichEdit_GetLineCount($MiniMark_edit)

        Local $scroll_calculate = $scroll_ratio * $scroll_last         ; calculate where to walk to
        Local $scroll_line = _GUICtrlRichEdit_GetFirstCharPosOnLine($MiniMark_edit, $scroll_calculate)

        _GUICtrlRichEdit_SetSel($MiniMark_edit, $scroll_line, $scroll_line)
    EndFunc   ;==>thumb_motion

    Func thumb_released()
        If $scroll_drag Then
            Local $scroll_new_pos = _GUICtrlRichEdit_GetScrollPos($MiniMark_edit)
            _GUICtrlRichEdit_SetSel($MiniMark_edit, $scroll_selection[0], $scroll_selection[1])
            _GUICtrlRichEdit_SetScrollPos($MiniMark_edit, $scroll_new_pos[0], $scroll_new_pos[1])
            $scroll_drag = False
        EndIf
    EndFunc   ;==>thumb_released

#EndRegion scroller messages
#Region shortcuts

    ; here we set all the shortcuts for the buttons.

    Dim $hotkeysaccel[14][2] = [ _
        ['+^d', $button_default], _
        ['^b', $button_bold], _
        ['^i', $button_italic], _
        ['^u', $button_underline], _
        ['^t', $button_struck], _
        ['+^r', $button_red], _
        ['+^g', $button_green], _
        ['+^b', $button_blue], _
        ['+^w', $button_white], _
        ['^o', $button_open], _
        ['^s', $button_save], _
        ['+^s', $save_as], _
        ['^f', $button_search], _
        ['{esc}', $button_quit] _
    ]

    GUISetAccelerators($hotkeysaccel, $MiniMark_form)

#EndRegion shortcuts
#Region search gui

    $search_form = GUICreate('Search', 305, 105, Default, Default, $ws_popup, BitOR($ws_ex_layered, $ws_ex_topmost))
    GUISetBkColor($color_transparent_background)

    GUICtrlCreatePic($image_search, 0, 0, 305, 105)
    GUICtrlSetState(Default, $gui_disable)

    $search_title = title_create('Find and replace', 295)

    $input_find = input_create(10, 30, 'What to look for.')
    $input_replace = input_create(10, 55, 'Replace by what.')

    $checkbox_case_state = 0
    $checkbox_case = checkbox_create('Case', 'Toggle casesence.', Default, 230, 30)
    $checkbox_word_state = 0
    $checkbox_word = checkbox_create('Word', 'Toggle whole word only.', Default, 230, 55)

    $button_search_find = button_create('Find', 'find string.', Default, 5, 80)
    $button_search_replace = button_create('Replace', 'Replace current match.', Default, 80, 80)
    $button_search_replace_all = button_create('Replace all', 'Replace all matches.', Default, 155, 80)
    $button_search_close = button_create('Close', '', Default, 230, 80)

    _WinAPI_SetLayeredWindowAttributes($search_form, $color_transparent_background)         ;set the transparant gui color

#EndRegion search gui
#Region search functions

    Func find()
        Local $find_text = GUICtrlRead($input_find)
        If $find_text = '' Then Return
        play_sound($sound_click)
        Local $selection = _GUICtrlRichEdit_GetSel($MiniMark_edit)
        $selection = _GUICtrlRichEdit_FindTextInRange($MiniMark_edit, $find_text, $selection[1], -1, $checkbox_case_state = 1, $checkbox_word_state = 1)
        If $selection[0] = -1 And $selection[1] = -1 Then
            alert('Search ended', 'No more matches found.' & @CRLF & 'Next time when you press the [Find] button, the search function will start looking from the beginning of the text.', $alert_ok)
            _GUICtrlRichEdit_SetSel($MiniMark_edit, 0, 0)
        Else
            _GUICtrlRichEdit_SetSel($MiniMark_edit, $selection[0], $selection[1])
        EndIf
    EndFunc   ;==>find

    Func replace()         ; work in progress
        Local $find_text = GUICtrlRead($input_find)
        If $find_text = '' Then Return
        play_sound($sound_click)
        Local $replace_text = GUICtrlRead($input_replace)
        _GUICtrlRichEdit_ReplaceText($MiniMark_edit, $replace_text)
        find()
    EndFunc   ;==>replace

    Func replace_all()
        Local $find_text = GUICtrlRead($input_find)
        If $find_text = '' Then Return
        play_sound($sound_click)
        Local $replace_text = GUICtrlRead($input_replace)
        Local $selection = _GUICtrlRichEdit_FindTextInRange($MiniMark_edit, $find_text, 0, -1, $checkbox_case_state = 1, $checkbox_word_state = 1)
        While $selection[0] > -1 And $selection[1] > -1
            _GUICtrlRichEdit_SetSel($MiniMark_edit, $selection[0], $selection[1])
            _GUICtrlRichEdit_ReplaceText($MiniMark_edit, $replace_text)
            $selection = _GUICtrlRichEdit_FindTextInRange($MiniMark_edit, $find_text, $selection[1], -1, $checkbox_case_state = 1, $checkbox_word_state = 1)
        WEnd
        alert('Search ended', 'No more matches found.' & @CRLF & 'All matches are replaced (if there were are any).', $alert_ok)
    EndFunc   ;==>replace_all

    Func find_and_replace()
        play_sound($sound_click)
        local $selection_text = _GUICtrlRichEdit_GetSelText($MiniMark_edit)
        if @error <> -1 then GUICtrlSetData($input_find, $selection_text)
        GUISetState(@SW_SHOW, $search_form)
        While 1
            Switch GUIGetMsg()
                Case $gui_event_close, $button_search_close
                    play_sound($sound_click)
                    GUISetState(@SW_HIDE, $search_form)
                    ExitLoop
                Case $checkbox_case
                    checkbox_toggle($checkbox_case, $checkbox_case_state)
                Case $checkbox_word
                    checkbox_toggle($checkbox_word, $checkbox_word_state)
                Case $button_search_find
                    find()
                Case $button_search_replace
                    replace()
                Case $button_search_replace_all
                    replace_all()
            EndSwitch
        WEnd
    EndFunc

#EndRegion search functions
#Region settings

    $font_size = Int(IniRead($file_settings, 'settings', 'fontsize', 100))

    $settings_form = GUICreate('Settings', 230, 80, Default, Default, $ws_popup, BitOR($ws_ex_layered, $ws_ex_topmost))
    GUISetBkColor($color_transparent_background)

    GUICtrlCreatePic($image_settings, 0, 0, 230, 80)
    GUICtrlSetState(Default, $gui_disable)

    $settings_title = title_create('Settings', 220)

    $checkbox_sound = checkbox_create('Sound', 'play sounds?', Default, 5, 30, $checkbox_sound_state)

    $button_settings_save = button_create('Save', 'Save settings.', Default, 5, 55)
    $button_settings_info = button_create('Info', 'About MiniMark.', Default, 155, 30)
    $button_settings_reset = button_create('Reset', 'Reset to default settings.', Default, 80, 55)
    $button_settings_close = button_create('Close', '', Default, 155, 55)

    $number_step = GUICtrlCreateInput($font_size, 85, 30, 45, 20, BitOR($es_center, $es_number, $es_autohscroll), 0)
    GUICtrlSetTip(Default, 'Custom font size (zoom).')
    GUICtrlSetColor(Default, $color_text_gray)
    GUICtrlSetBkColor(Default, $color_control_gray)
    GUICtrlSetFont(Default, 12, 400, 0, $font_handel_gothic_bt)
    GUICtrlSetLimit(Default, 8)
    $number_step_up = GUICtrlCreatePic($image_size_up, 130, 30, 20, 10)
    $number_step_down = GUICtrlCreatePic($image_size_down, 130, 40, 20, 10)

    _WinAPI_SetLayeredWindowAttributes($settings_form, $color_transparent_background)         ;set the transparant gui color

#EndRegion settings
#Region settings function

    Func settings()
        play_sound($sound_click)
        GUICtrlSetData($number_step, Int(_GUICtrlRichEdit_GetZoom($MiniMark_edit)))
        GUISetState(@SW_SHOW, $settings_form)
        While 1
            Switch GUIGetMsg()
                Case $gui_event_close, $button_settings_close
                    play_sound($sound_click)
                    GUISetState(@SW_HIDE, $settings_form)
                    ExitLoop
                Case $checkbox_sound
                    checkbox_toggle($checkbox_sound, $checkbox_sound_state)
                Case $number_step_up
                    number_step(1)
                Case $number_step_down
                    number_step(-1)
                Case $button_settings_info
                    If alert('About', 'MiniMark version 4.' & @CRLF & 'Created by:' & @CRLF & 'Tom Schrauwen (TheAutomator).', $alert_link_close) = 1 Then ShellExecute('https://www.autoitscript.com/forum/topic/212763-MiniMark-a-minimalistic-rtf-editor')
                Case $button_settings_reset
                    settings_reset()
                Case $button_settings_save
                    settings_save()
            EndSwitch
        WEnd
    EndFunc

#EndRegion settings function
#Region settings messages

    ; write ini

    Func number_step($amount)
        Local $number = GUICtrlRead($number_step)
        $number += $amount
        GUICtrlSetData($number_step, $number)
        play_sound($sound_click)
    EndFunc   ;==>number_step

    Func settings_reset()
        If Not $checkbox_sound_state Then checkbox_toggle($checkbox_sound, $checkbox_sound_state)
        GUICtrlSetData($number_step, 100)
        play_sound($sound_click)
    EndFunc   ;==>settings_reset

    Func settings_save()
        IniWrite($file_settings, 'settings', 'sound', $checkbox_sound_state)
        IniWrite($file_settings, 'settings', 'fontsize', GUICtrlRead($number_step))
        _GUICtrlRichEdit_SetZoom($MiniMark_edit, GUICtrlRead($number_step))
        play_sound($sound_click)
    EndFunc   ;==>settings_save

#EndRegion settings messages
#Region file functions

    ; if this is not the case, or when there are no arguments, we just open the intro file instead.
    ; also extract the filename from $cmdline to display as title.

    Func load_file()
        GUICtrlSetData($MiniMark_title, get_filename())
        GUICtrlSetTip($MiniMark_title, $cmdline[1])         ; display full path on mouse over title
        _GUICtrlRichEdit_Deselect($MiniMark_edit)
        _GUICtrlRichEdit_StreamFromFile($MiniMark_edit, $cmdline[1])
        _GUICtrlRichEdit_SetZoom($MiniMark_edit, Int($font_size))         ; needed becouse it resets after loading (https://www.autoitscript.com/forum/topic/190695-_guictrlrichedit_setzoom-parameter-limitation)
        _GUICtrlRichEdit_SetModified($MiniMark_edit, False)
        _GUICtrlRichEdit_EmptyUndoBuffer($MiniMark_edit)
        GUICtrlSetPos($MiniMark_scroll_thumb, $scroll_x, 340)         ; put scroll button at end
    EndFunc   ;==>load_file

    load_file()         ; load input file

    ; before opening another file or before quitting, we need to check if the current file is modified.

    Func save_changes_cancel()         ; returns true if we wanna cancel follow up actions
        If Not _GUICtrlRichEdit_IsModified($MiniMark_edit) Then Return
        Switch alert('Save changes?', 'This file was modified.' & @CRLF & 'Do you wanna save your work first?', $alert_yes_no_cancel)
            Case 1         ; yes
                save_file()
            Case 2         ; no
                Return
            Case Else
                Return True         ; abort next actions
        EndSwitch
    EndFunc   ;==>save_changes_cancel

    ; the function that saves the current text to a *.mnm file.
    ; _guictrlrichedit_streamtofile($edit, $cmdline[1]) -> bug, adds new paragraph every time (see ticket).

    Func save_file($as = False)         ; as triggers a save to dialog

        If $as Then
            play_sound($sound_click)
            Local $new_file = FileSaveDialog('Save MiniMark file...', @DesktopDir, 'MiniMark file (*.mnm)', 16, '', $MiniMark_form)
            If @error Or wrong_file_extension() Then Return
            $cmdline[1] = $new_file
            GUICtrlSetTip($MiniMark_title, $new_file)         ; display full path on mouse over title
            GUICtrlSetData($MiniMark_title, get_filename())
        Else
            If Not _GUICtrlRichEdit_IsModified($MiniMark_edit) Then Return
            play_sound($sound_click)
        EndIf

        _GUICtrlRichEdit_Deselect($MiniMark_edit)
        Local $var = _GUICtrlRichEdit_StreamToVar($MiniMark_edit)
        $var = StringTrimRight($var, 9) & "}"         ; bug will be resolved in future versions

        Local $file = FileOpen($cmdline[1], $fo_overwrite)
        Local $written = FileWrite($file, $var)
        FileClose($file)

        If $written = 1 Then         ; 0 = failed to write, 1 = succes
            _GUICtrlRichEdit_SetModified($MiniMark_edit, False)
        Else
            alert('File write error!', "Can't save the file..." & @CRLF & 'Check if the file is read only.', $alert_ok)
        EndIf
    EndFunc   ;==>save_file

    ; open a file with the open dialog.

    Func open_file()
        If save_changes_cancel() Then Return
        play_sound($sound_click)
        Local $file = FileOpenDialog('Open new MiniMark file...', @DesktopDir, 'MiniMark file (*.mnm)', 3, '', $MiniMark_form)
        If @error Or wrong_file_extension() Then Return
        $cmdline[1] = $file
        load_file()
    EndFunc   ;==>open_file

#EndRegion file functions
#Region quit function

    ; when the program unloads we need to destroy the rich edit control and play the stop sound

    Func quit()
        If save_changes_cancel() Then Return
        play_sound($sound_stop, 1)
        _GUICtrlRichEdit_Destroy($MiniMark_edit)
        GUIDelete()
        Exit
    EndFunc   ;==>quit

#EndRegion quit function
#Region main loop

    While 1
        Switch GUIGetMsg()

            Case $gui_event_close, $button_quit
                quit()

            Case $MiniMark_scroll_up
                play_sound($sound_click)
                _GUICtrlRichEdit_ScrollLines($MiniMark_edit, -1)

            Case $MiniMark_scroll_down
                play_sound($sound_click)
                _GUICtrlRichEdit_ScrollLines($MiniMark_edit, 1)

            Case $button_open
                open_file()

            Case $button_save
                save_file()

            Case $save_as
                save_file(True)

            Case $button_bold
                stylize('bo')

            Case $button_italic
                stylize('it')

            Case $button_struck
                stylize('st')

            Case $button_underline
                stylize('un')

            Case $button_red
                colorize($color_text_red)

            Case $button_green
                colorize($color_text_green)

            Case $button_blue
                colorize($color_text_blue)

            Case $button_white
                colorize($color_text_white)

            Case $button_default
                colorize($color_text_gray)

            Case $gui_event_primarydown
                thumb_clicked()

            Case $gui_event_mousemove
                thumb_motion()

            Case $gui_event_primaryup
                edit_clicked()
                thumb_released()

            Case $button_search
                find_and_replace()

            Case $button_settings
                settings()

        EndSwitch
    WEnd

#EndRegion main loop

And here is the code for the installer:

#cs

    function:   installer for MiniMark
    version:    3
    made by:    TheAutomator
    project:    https://www.autoitscript.com/forum/topic/212763-minimark-a-minimalistic-rtf-editor

    todo:

        • check if programfiles exist when opened
        • add choice for install path and user level install
        • installer does'nt use the "fileinstall" function (yet)

#ce

#Region ;**** Directives created by AutoIt3Wrapper_GUI ****
#autoit3wrapper_icon=setup\setup.ico
#autoit3wrapper_outfile=Setup.EXE
#autoit3wrapper_compression=4
#autoit3wrapper_useupx=y
#EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****

#NoTrayIcon
#RequireAdmin

#include <guiconstants.au3>
#include <winapisyswin.au3>

const $source_path = @ScriptDir & '\minimark'
const $setup_path = @ScriptDir & '\setup'
const $install_path = @ProgramFilesDir & '\MiniMark'
const $install_font = @ScriptDir & '\setup\handelgo.ttf'

const $font_lucida = 'lucida console'

const $image_background = @scriptdir & '\setup\setup.bmp'
const $image_install = @scriptdir & '\setup\install.bmp'
const $image_remove = @scriptdir & '\setup\remove.bmp'
const $image_exit = @scriptdir & '\minimark\exit.bmp'

const $color_gui_transparant = 0xff00ff
const $color_edit_background = 0x323232
const $color_edit_gray = 0xb4b4b4
const $color_edit_red = 0xff0066
const $color_edit_green = 0x66ff00

const $sound_start = @scriptdir & '\minimark\start.wav'
const $sound_click = @scriptdir & '\minimark\click.wav'
const $sound_alert = @scriptdir & '\minimark\alert.wav'
const $sound_stop = @scriptdir & '\minimark\stop.wav'

local $check_installed = FileExists($install_path)

soundplay($sound_start) ; startup sound

$form = guicreate('MiniMark Setup', 310, 240, default, default, $ws_popup, $ws_ex_layered)
    guisetbkcolor($color_gui_transparant)

$title = guictrlcreatelabel('', 10, 10, 280, 20, $SS_GRAYRECT, $gui_ws_ex_parentdrag) ; use label to drag form (hidden behind gui image)

guictrlcreatepic($image_background, 0, 0, 310, 240)
    guictrlsetstate(default, $gui_disable)

$console = GUICtrlCreateEdit('MiniMark V3 setup' & @CRLF & 'made by: TheAutomator', 20, 50, 270, 140, bitor($es_multiline, $es_autovscroll, $es_readonly), 0)
    GUICtrlSetColor(Default, $color_edit_gray)
    GUICtrlSetBkColor(Default, $color_edit_background)
    GUICtrlSetFont(Default, 9, 0, 0, $font_lucida)

$button_install = guictrlcreatepic($check_installed ? $image_remove : $image_install, 10, 210, 50, 20)

$button_exit = guictrlcreatepic($image_exit, 250, 210, 50, 20)
    $escape = guictrlcreatedummy()
    dim $hotkeysaccel[1][2] = [["{esc}", $escape]]
    guisetaccelerators($hotkeysaccel)

_winapi_setlayeredwindowattributes($form, $color_gui_transparant) ; 0xff00ff is set as the transparant gui color

guisetstate()

func console($text)
    GUICtrlSetData($console, @crlf & @crlf & $text, 1)
EndFunc

console($check_installed ? 'it looks like MiniMark is already installed, press [remove] to uninstall' : 'it looks like MiniMark is not installed yet, press [install] to install it')

func install_remove() ; needs admin rights, compiling installer to exe is probably needed...
    GUICtrlSetColor($console, $color_edit_green)

    soundplay($sound_click)
    GUICtrlSetState($button_install, $gui_hide)

    if $check_installed then ; remove it
        console('removing MiniMark from:')
        console($install_path)
        DirRemove($install_path, 1)

        console('removing MiniMark menu')
        RegDelete('HKEY_CLASSES_ROOT\.mnm')
        RegDelete('HKEY_CLASSES_ROOT\MiniMark')

        console('removing "handelgothic bt" font')
        RegDelete('HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Fonts', 'HandelGothic BT (TrueType)') ; uninstall font in registery
        DllCall('gdi32.dll', 'int', 'RemoveFontResource', 'str', @WindowsDir & '\Fonts\handelgo.ttf') ; uninstall font in fonts folder
        DllCall('user32.dll', 'int', 'SendMessage', 'hwnd', 0xFFFF, 'int', 0x1D, 'int', 0, 'int', 0) ; tell windows about font changes
        FileDelete(@WindowsDir & '\Fonts\handelgo.ttf') ; delete font in fonts folder

        $check_installed = FileExists($install_path)

        if $check_installed Then
            GUICtrlSetColor($console, $color_edit_red)
            soundplay($sound_alert)
            console('MiniMark was not removed correctly...')
        Else
            console('MiniMark was uninstalled succesfully!')
        EndIf
    Else ; install it
        console('installing MiniMark to:')
        console($install_path)
        DirCopy($source_path, $install_path, 1) ; $fc_overwrite

        console('installing MiniMark menu')
        RegWrite('HKEY_CLASSES_ROOT\.mnm', '', 'REG_SZ', 'MiniMark') ; add filetype
        RegWrite('HKEY_CLASSES_ROOT\.mnm', 'PerceivedType', 'REG_SZ', 'Document') ; tell windows it's a document
        RegWrite('HKEY_CLASSES_ROOT\.mnm\ShellNew', 'NullFile', 'REG_SZ', '') ; add it to the 'new' file menu
        RegWrite('HKEY_CLASSES_ROOT\MiniMark', '', 'REG_SZ', 'MiniMark File') ; add edit menu for *.mnm file
        RegWrite('HKEY_CLASSES_ROOT\MiniMark', 'BrowserFlags', 'REG_DWORD', '00000008')
        RegWrite('HKEY_CLASSES_ROOT\MiniMark', 'EditFlags', 'REG_DWORD', '00000000')
        RegWrite('HKEY_CLASSES_ROOT\MiniMark\DefaultIcon', '', 'REG_SZ', $install_path & '\MiniMark.exe,0') ; set icon for *.mnm file
        RegWrite('HKEY_CLASSES_ROOT\MiniMark\Shell\Open', 'Icon', 'REG_SZ', $install_path & '\MiniMark.exe,0') ; set icon for open menu
        RegWrite('HKEY_CLASSES_ROOT\MiniMark\Shell\Open\Command', '', 'REG_SZ', $install_path & '\MiniMark.exe "%1"') ; always open with MiniMark

        console('installing "handelgothic bt" font')
        FileCopy($install_font, @WindowsDir & '\Fonts\', 1) ; $FC_OVERWRITE (1) = overwrite existing files
        RegWrite('HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Fonts', 'HandelGothic BT (TrueType)', 'REG_SZ', 'handelgo.ttf') ; install font in registery
        DllCall('gdi32.dll', 'int', 'AddFontResource', 'str', @WindowsDir & '\Fonts\handelgo.ttf') ; install font in fonts folder
        DllCall('user32.dll', 'int', 'SendMessage', 'hwnd', 0xFFFF, 'int', 0x1D, 'int', 0, 'int', 0) ; tell windows about font changes
        DllCall('shell32.dll', 'none', 'SHChangeNotify', 'long', 0x08000000, 'uint', 0, 'ptr', 0, 'ptr', 0) ; refresh the icon cache (ie4uinit.exe -show)

        $check_installed = FileExists($install_path)

        if $check_installed Then
            console('MiniMark was installed succesfully!')
        Else
            GUICtrlSetColor($console, $color_edit_red)
            soundplay($sound_alert)
            console('MiniMark was not installed correctly...')
        EndIf
    EndIf

    guictrlsetimage($button_install, $check_installed ? $image_remove : $image_install)
    GUICtrlSetState($button_install, $gui_show)
EndFunc

func quit()
    soundplay($sound_stop, 1)
    exit
endfunc

while 1
    switch guigetmsg()
        case $gui_event_close, $button_exit, $escape
            quit()
        case $button_install
            install_remove()
    endswitch
wend

TheAutomator.

 

 

 

 

 

Edited by TheAutomator
added installer
Posted (edited)

It's usually called "Strike(through)", not "Stripe", and maybe put an Underline under the characters in the bmp's that can be ctrl'ed, and maybe put a lowercase "u" in front of "uLine".

It looks nice, havent tried it though, cant be bothered installing fonts nor compile it as exe. :)

Btw, please put all the files in a folder before zipping, so people dont have to create a folder in their examples scripts folder themselfes.

Edited by Werty

Some guy's script + some other guy's script = my script!

Posted
7 hours ago, Werty said:

It's usually called "Strike(through)", not "Stripe", and maybe put an Underline under the characters in the bmp's that can be ctrl'ed, and maybe put a lowercase "u" in front of "uLine".

It looks nice, havent tried it though, cant be bothered installing fonts nor compile it as exe. :)

Btw, please put all the files in a folder before zipping, so people dont have to create a folder in their examples scripts folder themselfes.

Good advice!
Made some adjustments :)

btw, you can run the script as is (no compiling needed for that) if you wanna test it out, it just opens the helpfile with no arguments as you can see in the picture.

Posted (edited)

UPDATE:

  1. code cleanup
  2. added minimalistic sci-fi sounds
  3. better text on buttons and they have labels now
  4. better shortcuts
  5. open and save buttons now work as intended
  6. helpfile got an update
  7. code can be tested when not compiled
  8. removed a bug

Enjoy and let me know what you think :)

PS:

If anyone knows how to make the edit scroll up / down when I use the mouse to scroll, let me know.
I looked at this topic, but have no clue what to make of the code:

 

 

 

Edited by TheAutomator
Posted
17 hours ago, TheAutomator said:

If anyone knows how to make the edit scroll up / down when I use the mouse to scroll, let me know.

Does this work for you ?

_GUICtrlRichEdit_SetEventMask($edit, BitOR($ENM_SCROLL, $ENM_SCROLLEVENTS))
GUIRegisterMsg($WM_NOTIFY, "WM_NOTIFY")

...

Func WM_NOTIFY($hWnd, $iMsg, $wParam, $lParam)
    #forceref $hWnd, $iMsg, $wParam
    Local $tNMHDR, $hWndFrom, $iCode
    $tNMHDR = DllStructCreate($tagNMHDR, $lParam)
    $hWndFrom = HWnd($tNMHDR.hWndFrom)
    $iCode = $tNMHDR.Code
    Switch $hWndFrom
        Case $edit
            Select
                Case $iCode = $EN_MSGFILTER
                    Local $tMsgFilter = DllStructCreate($tagMSGFILTER, $lParam)
                    Switch $tMsgFilter.msg
                        Case $WM_VSCROLL
                            _GUICtrlRichEdit_ScrollLines($edit, ($tMsgFilter.wparam = 1 ? 1 : -1))
                    EndSwitch
            EndSelect
    EndSwitch
    Return $GUI_RUNDEFMSG
EndFunc   ;==>WM_NOTIFY

 

"I think you are searching a bug where there is no bug..."

Posted (edited)

Pixelsearch,

6 hours ago, pixelsearch said:

Does this work for you ?

_GUICtrlRichEdit_SetEventMask($edit, BitOR($ENM_SCROLL, $ENM_SCROLLEVENTS))
GUIRegisterMsg($WM_NOTIFY, "WM_NOTIFY")

...

Func WM_NOTIFY($hWnd, $iMsg, $wParam, $lParam)
    #forceref $hWnd, $iMsg, $wParam
    Local $tNMHDR, $hWndFrom, $iCode
    $tNMHDR = DllStructCreate($tagNMHDR, $lParam)
    $hWndFrom = HWnd($tNMHDR.hWndFrom)
    $iCode = $tNMHDR.Code
    Switch $hWndFrom
        Case $edit
            Select
                Case $iCode = $EN_MSGFILTER
                    Local $tMsgFilter = DllStructCreate($tagMSGFILTER, $lParam)
                    Switch $tMsgFilter.msg
                        Case $WM_VSCROLL
                            _GUICtrlRichEdit_ScrollLines($edit, ($tMsgFilter.wparam = 1 ? 1 : -1))
                    EndSwitch
            EndSelect
    EndSwitch
    Return $GUI_RUNDEFMSG
EndFunc   ;==>WM_NOTIFY

 

Nice! You made my day! :D

The code you provided worked like a charm, but did raise some questions (if you don't mind replying to them).

1: why the #forcref, is it needed in this code?
2: why using 'switch' and 'select' if we can simply use 'if'?

The version i'm gonna put in the project:

_guictrlrichedit_seteventmask($edit, bitor($enm_scroll, $enm_scrollevents))

guiregistermsg($wm_notify, "wm_notify")

func wm_notify($hwnd, $imsg, $wparam, $lparam) ; make scrolling in the edit possible (thanks pixelsearch!)
    local $tnmhdr, $hwndfrom, $icode
    $tnmhdr = dllstructcreate($tagnmhdr, $lparam)
    $hwndfrom = hwnd($tnmhdr.hwndfrom)
    $icode = $tnmhdr.code
    if $hwndfrom = $edit then
        if $icode = $en_msgfilter then
            local $tmsgfilter = dllstructcreate($tagmsgfilter, $lparam)
            if $tmsgfilter.msg = $wm_vscroll then _guictrlrichedit_scrolllines($edit, ($tmsgfilter.wparam = 1 ? 1 : -1))
        endif
    endif
    return $gui_rundefmsg
endfunc

Thanks for the help!
Figuring out how to correctly do more advanced specific stuff, like finding the right parameters, using dllstructs and worrying about not using code correctly can be dificult at times :sweating:

MiniMark (now version 2) is uploaded.
 

Edited by TheAutomator
Posted

@TheAutomator glad it helped you.

By the way, as you don't want to add scrollbars (in your richedit control styles) then you can simplify the mask, keeping only $ENM_SCROLLEVENTS to take care of notifications for mouse wheel events :

; _GUICtrlRichEdit_SetEventMask($edit, BitOR($ENM_SCROLL, $ENM_SCROLLEVENTS))
_GUICtrlRichEdit_SetEventMask($edit, $ENM_SCROLLEVENTS)

 

Just now, TheAutomator said:

1: why the #forcref, is it needed in this code?

You'll find the answer in this thread and also in that one

Just now, TheAutomator said:

2: why using 'switch' and 'select' if we can simply use 'if'?

No problem. If you prefer to code with 'if' it will give the same result :)

"I think you are searching a bug where there is no bug..."

Posted

In fact if you set the mask to only scroll events :

_GUICtrlRichEdit_SetEventMask($hRichEdit, $ENM_SCROLLEVENTS)

then the WM_NOTIFY message proc can be as simple as :

Func WM_NOTIFY($hWnd, $iMsg, $wParam, $lParam)
  Local $tFilter = DllStructCreate($tagMSGFILTER, $lParam)
  If $tFilter.hwndFrom = $hRichEdit Then _GUICtrlRichEdit_ScrollLines($tFilter.hwndFrom, $tFilter.wParam ? 1 : -1)
  Return $GUI_RUNDEFMSG
EndFunc   ;==>WM_NOTIFY

 

Posted
9 hours ago, Nine said:

In fact if you set the mask to only scroll events :

_GUICtrlRichEdit_SetEventMask($hRichEdit, $ENM_SCROLLEVENTS)

then the WM_NOTIFY message proc can be as simple as :

Func WM_NOTIFY($hWnd, $iMsg, $wParam, $lParam)
  Local $tFilter = DllStructCreate($tagMSGFILTER, $lParam)
  If $tFilter.hwndFrom = $hRichEdit Then _GUICtrlRichEdit_ScrollLines($tFilter.hwndFrom, $tFilter.wParam ? 1 : -1)
  Return $GUI_RUNDEFMSG
EndFunc   ;==>WM_NOTIFY

 

Perfect! Love it! :D Thank you so much!
Gonna put it like that inside of the code now :)

Posted
28 minutes ago, TheAutomator said:

Next task:

Spoiler
const $source_path = @ScriptDir & '\minimark'
Const $image_background = $source_path & '\gui.bmp'
Const $image_blue = $source_path & '\blue.bmp'
Const $image_bold = $source_path & '\bold.bmp'
Const $image_default = $source_path & '\default.bmp'
Const $image_exit = $source_path & '\exit.bmp'
Const $image_green = $source_path & '\green.bmp'
Const $image_italic = $source_path & '\italic.bmp'
Const $image_open = $source_path & '\open.bmp'
Const $image_red = $source_path & '\red.bmp'
Const $image_save = $source_path & '\save.bmp'
Const $image_struck = $source_path & '\struck.bmp'
Const $image_under = $source_path & '\under.bmp'
Const $image_white = $source_path & '\white.bmp'

Const $sound_start = $source_path & '\start.wav'
Const $sound_click = $source_path & '\click.wav'
Const $sound_alert = $source_path & '\alert.wav'
Const $sound_stop = $source_path & '\stop.wav'

Const $color_gui_transparant = 0xff00ff
Const $color_title = 0x999999
Const $color_edit_background = 0x00323232
Const $color_edit_gray = 0x00b4b4b4
Const $color_edit_red = 0x006600ff
Const $color_edit_green = 0x0000ff66
Const $color_edit_blue = 0x00ff6600
Const $color_edit_white = 0x00ffffff

Const $file_manual = $source_path & '\minimark.mnm'

..fix the new paths in MiniMark.au3 :lol:

Follow the link to my code contribution ( and other things too ).
FAQ - Please Read Before Posting.
autoit_scripter_blue_userbar.png

Posted (edited)

argumentum,

Can you tell me why making an extra variable would be better? Does @scriptdir slow the script down when used a lot? :think:

1 hour ago, argumentum said:

Request: Portable version, script version, and user level install too ( for office workers ).

PS: there is code in the help file ( I if memory serves, else, the forum ) to load the font without installing it first, from file or resource.

About the request for the fonts, you mean this right?
https://www.autoitscript.com/autoit3/docs/libfunctions/_WinAPI_AddFontResourceEx.htm

I'm not sure if temporary installing the font every time the script get's opened is a good idea, as shown in the link it installs the font only for the current session but still installs it... I need to reseach it a little more to be sure tho.

Script version is already possible if you mean running it uncompiled?

And user level install means commenting out this line from the installer I suppose:

#RequireAdmin

Compiling MiniMark to an exe and leaving the sounds, images and help file with it technically makes it portable.
Using fileinstall is also an option, do you have a preference?
If you mean working with embedded resources, well thats new for me, I might make mistakes but i'll give it a try.

Edited by TheAutomator
Posted (edited)
4 hours ago, TheAutomator said:

Compiling MiniMark to an exe and leaving the sounds, images and help file with it technically makes it portable.

#autoit3wrapper_icon=setup\setup.ico, 201
... ...
DllCall('shell32.dll', 'long', 'SetCurrentProcessExplicitAppUserModelID', 'wstr', StringStripWS(@ScriptName, 8)) ; look at _WinAPI_SetCurrentProcessExplicitAppUserModelID()
$form = GUICreate('MiniMark Setup', 300, 300, Default, Default, $ws_popup, $ws_ex_layered)
Gui_SetIconIf("setup\icon.ico", 201)
Func Gui_SetIconIf($sIconFile, $iIconID)
    If @AutoItExe = @ScriptFullPath And Not FileGetSize($sIconFile) Then
        GUISetIcon(@AutoItExe, $iIconID)
    Else
        GUISetIcon($sIconFile)
    EndIf
EndFunc   ;==>Gui_SetIconIf

That function I use in one of my scripts where if compiled uses the internal Icon, else, use the file but if is there, maybe the user wanted a different one so use the one on disk.

 Similarly you can keep all the files on disk or embed it in the executable, or both as described above. 

4 hours ago, TheAutomator said:

And user level install means commenting out this line from the installer I suppose:

It would take installing to where a user can modify anything that a non-admin could. @AppDataDir could be a good folder as @ProgramFilesDir requires admin level.
In cv.exe there is code to elevate and de-elevate. You can use that or scrape the forum for the original sources. That would give the user the option to install as admin or user.

4 hours ago, TheAutomator said:

Can you tell me why making an extra variable would be better? Does @scriptdir slow the script down when used a lot? :think:

Oh, that. I wanted to edit as little as possible and, have what I wanted, hence the extra variable. As is from the download, it didn't run.

4 hours ago, TheAutomator said:

Script version is already possible if you mean running it uncompiled?

Yes it is. The reason for my requests is to have a nice product that would please as many users as possible, in as many circumstances as there may be.
Maybe 10 users will use your script as a product, or a million, no clue. But if your script is an example of how to code something, better :)

These requests are perfectly doable. Is just a matter of coding it that way, if is not too far from what you had in mind.

5 hours ago, TheAutomator said:

Next task: adding a find/replace window.

Along those lines of expanding capabilities, making the GUI resizable would be nice.

Resize the font too ( for those that need bigger letters because they don't see very well ).
"Zoom in / out: ctrl + scroll" with memory, for the next time is loaded.

One feature at the time is good.

Thanks for paying attention to my demands requests :) 

Edited by argumentum
English

Follow the link to my code contribution ( and other things too ).
FAQ - Please Read Before Posting.
autoit_scripter_blue_userbar.png

Posted (edited)

argumentum,

I added it to the example scripts to share it with users who like this kind of software, and to show others how to use the rich edit control and create custom GUIs. 🙂

The goal is to have a minimalistic RTF editor with files that have custom icons and open directly with MiniMark. Personally, I use it as a quick notes app for all kinds of lists (to-dos, series to binge, things to buy...) that I can just double-click and edit when needed. I'm not planning to tweak the icons, style, or add a huge amount of options becouse that would make it "maximalistic" :mellow:.

That being said, allowing users to choose the installation location is a great idea and will be added soon! Keep in mind that the software is designed to be compiled and installed (custom icons, fonts, and right-click menu entries). Making it portable would mean users have to manually open or drag icon-less files into the executable, which isn’t very convenient..

For testing the script as is please check the README: drag MiniMark.au3 into the MiniMark folder so it can access its files properly, then it should work.

I'm doing my best to make it work as smooth as possible in my free time, but this is an open-source project in a forum full of developers who can tweak it to their liking. That doesn’t mean I’m ignoring requests, I gladly accept help with code and small handy improvements for those who want to contribute!

It’s all about finding the right balance between keeping it light but good. An update is coming soon, so let’s see what I can do. 😃

Edited by TheAutomator
a few typos removed
Posted (edited)

MiniMark 3 is here!

Now we have:

  • a custom (still buggy) scrollbar
  • a search window to find and replace text (ctrl+f -> should also make a button for it that)
  • installer is a little smaller

Upcoming:

  • user level install option (as deman... I mean, requested by argumentum) ;)
  • a settings window, and writing an INI file to remember some settings (like enabeling sounds or the last zoom amount)

Making the gui resizable is not as easy as it seems, I tried to do that in the past with a custom gui and got very frustrated when using a borderles window that could get maximized by hitting the top of the screen but not register as maximized for example... We'll see :)

Readers of this post, I kindly request your help!

Please have a look at the custom scrollbar, and let me know if there is a way to scroll the rich edit to a specific line without moving the caret or changing the selection of the edit control, that's what i'm trying to do but the code is a little dirty. :huh2:

#Region scrollbar

    $scroll_drag = False ; are we dragging the scroll button?

    Func check_scroll_clicked() ; always sets $scroll_cursor variable
        Local $scroll_cursor = GUIGetCursorInfo($form)
        If _
            $scroll_cursor[0] >= 300 And _
            $scroll_cursor[0] <= 310 And _
            $scroll_cursor[1] >= 60 And _
            $scroll_cursor[1] <= 369 _
        Then $scroll_drag = True
    EndFunc

    Func scroll() ; label : 300, 60, 10, 20 bar: 300, 60, 10, 310 lies visible: around 28
        Local $scroll_x = 300 ; x of $scroll control at all times
        Local $scroll_min_y = 60, $scroll_max_y = 350 ; range of y movement for $scroll (top of frame till bottom - height)

        $scroll_cursor = GUIGetCursorInfo($form)[1] ; get y position of cursor
        if $scroll_cursor < $scroll_min_y then $scroll_cursor = $scroll_min_y
        if $scroll_cursor > $scroll_max_y then $scroll_cursor = $scroll_max_y
        GUICtrlSetPos($scroll, $scroll_x, $scroll_cursor) ; drag scroll button within range of background bar

        $scroll_ratio = ($scroll_cursor - $scroll_min_y) / ($scroll_max_y - $scroll_min_y) ; calculate scroll position percentage between 0 and 1
        $scroll_last = _GUICtrlRichEdit_GetLineCount($Edit)

        If $scroll_last > 27 then $scroll_last -= 25 ; scroll to end but not over end
        $scroll_first = _GUICtrlRichEdit_GetNumberOfFirstVisibleLine($edit)

        $scroll_calculate = Int($scroll_ratio * $scroll_last) - $scroll_first ; calculate where to walk to

        consolewrite(_GUICtrlRichEdit_GetLineCount($Edit) & '---' & $scroll_calculate & '---' & $scroll_ratio & @CRLF)
        _GUICtrlRichEdit_ScrollLines($edit, $scroll_calculate)
    EndFunc

#endregion

while 1
    switch guigetmsg()
        case $gui_event_close, $button_exit
            quit()

        case $GUI_EVENT_PRIMARYDOWN
            check_scroll_clicked()

        Case $GUI_EVENT_MOUSEMOVE
            If $scroll_drag Then scroll()

        Case $GUI_EVENT_PRIMARYUP
            $scroll_drag = False
            
            ...

Thanks to everyone that contributed, liked and suported this project!
See you soon with updates and replys :D

Edited by TheAutomator

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...